(summarize_insn, case SUBREG, CONST_*): New cases.

From-SVN: r11553
This commit is contained in:
Richard Kenner 1996-03-18 08:02:09 -05:00
parent 76184def9f
commit 8ba4699440

View File

@ -1976,6 +1976,14 @@ summarize_insn (x, sum, set)
summarize_insn (XEXP (x, 0), sum, 0);
break;
case SUBREG:
summarize_insn (SUBREG_REG (x), sum, 0);
break;
case CONST_INT: case CONST_DOUBLE:
case SYMBOL_REF: case LABEL_REF: case CONST:
break;
/* Handle common unary and binary ops for efficiency. */
case COMPARE: case PLUS: case MINUS: case MULT: case DIV:
case MOD: case UDIV: case UMOD: case AND: case IOR: