Commit 5feca984 by Kaveh R. Ghazi Committed by Kaveh Ghazi

pa.h (CONST_COSTS): When checking the CONST_DOUBLE enumerated case...

       * pa.h (CONST_COSTS): When checking the CONST_DOUBLE enumerated
       case, add parentheses to specify the proper order of precedence in
       the if-statement.

From-SVN: r18291
parent 51723711
Sat Feb 28 07:54:03 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* pa.h (CONST_COSTS): When checking the CONST_DOUBLE enumerated
case, add parentheses to specify the proper order of precedence in
the if-statement.
* c-aux-info.c: Include string.h/strings.h.
* pa.c: Include stdlib.h.
......
......@@ -1836,7 +1836,7 @@ while (0)
case SYMBOL_REF: \
return 4; \
case CONST_DOUBLE: \
if (RTX == CONST0_RTX (DFmode) || RTX == CONST0_RTX (SFmode)\
if ((RTX == CONST0_RTX (DFmode) || RTX == CONST0_RTX (SFmode)) \
&& OUTER_CODE != SET) \
return 0; \
else \
......
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