Commit d4129363 by Richard Stallman

*** empty log message ***

From-SVN: r972
parent b96806f6
...@@ -896,7 +896,7 @@ struct cumulative_args { int ints, floats; }; ...@@ -896,7 +896,7 @@ struct cumulative_args { int ints, floats; };
of a switch statement. If the code is computed here, of a switch statement. If the code is computed here,
return it with a return statement. Otherwise, break from the switch. */ return it with a return statement. Otherwise, break from the switch. */
#define CONST_COSTS(RTX,CODE) \ #define CONST_COSTS(RTX,CODE, OUTER_CODE) \
case CONST_INT: \ case CONST_INT: \
if (INTVAL (RTX) == 0) \ if (INTVAL (RTX) == 0) \
return 0; \ return 0; \
......
...@@ -669,7 +669,7 @@ enum reg_class { NO_REGS, GENERAL_REGS, ...@@ -669,7 +669,7 @@ enum reg_class { NO_REGS, GENERAL_REGS,
of a switch statement. If the code is computed here, of a switch statement. If the code is computed here,
return it with a return statement. Otherwise, break from the switch. */ return it with a return statement. Otherwise, break from the switch. */
#define CONST_COSTS(RTX,CODE) \ #define CONST_COSTS(RTX,CODE, OUTER_CODE) \
case CONST_INT: \ case CONST_INT: \
if ((unsigned) INTVAL (RTX) < 077) return 1; \ if ((unsigned) INTVAL (RTX) < 077) return 1; \
case CONST: \ case CONST: \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment