Commit 96f69de5 by Jim Wilson

(CONST_DOUBLE_OK_FOR_LETTER_P): Use fp_zero_operand.

From-SVN: r5112
parent e6d52559
...@@ -603,8 +603,7 @@ extern char leaf_reg_backmap[]; ...@@ -603,8 +603,7 @@ extern char leaf_reg_backmap[];
Here VALUE is the CONST_DOUBLE rtx itself. */ Here VALUE is the CONST_DOUBLE rtx itself. */
#define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) \ #define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) \
((C) == 'G' ? CONST_DOUBLE_HIGH (VALUE) == 0 \ ((C) == 'G' ? fp_zero_operand (VALUE) \
&& CONST_DOUBLE_LOW (VALUE) == 0 \
: (C) == 'H' ? arith_double_operand (VALUE, DImode) \ : (C) == 'H' ? arith_double_operand (VALUE, DImode) \
: 0) : 0)
......
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