Commit 06eb8e92 by Richard Kenner

(CONST_COSTS, case CONST_INT): Fix typo.

From-SVN: r7467
parent 86270344
...@@ -1340,7 +1340,7 @@ extern char *current_function_name; ...@@ -1340,7 +1340,7 @@ extern char *current_function_name;
#define CONST_COSTS(RTX,CODE,OUTER_CODE) \ #define CONST_COSTS(RTX,CODE,OUTER_CODE) \
case CONST_INT: \ case CONST_INT: \
if (INTVAL (RTX) >= 0 && INTVAL (RTX) < 2546) \ if (INTVAL (RTX) >= 0 && INTVAL (RTX) < 256) \
return 0; \ return 0; \
case CONST_DOUBLE: \ case CONST_DOUBLE: \
if (((OUTER_CODE) == PLUS && add_operand (RTX, VOIDmode)) \ if (((OUTER_CODE) == PLUS && add_operand (RTX, VOIDmode)) \
......
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