Commit df28deda by Kaveh R. Ghazi Committed by Kaveh Ghazi

PR/middle-end 14915

       PR/middle-end 14915
       * builtins.c (expand_builtin_signbit): Test BYTES_BIG_ENDIAN, not
       BITS_BIG_ENDIAN.

From-SVN: r80732
parent c87fbb0a
2004-04-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
PR/middle-end 14915
* builtins.c (expand_builtin_signbit): Test BYTES_BIG_ENDIAN, not
BITS_BIG_ENDIAN.
2004-04-15 Pat Haugen <pthaugen@us.ibm.com>
* ra-debug.c (ra_print_rtx): Add break's to case legs.
......
......@@ -5044,7 +5044,7 @@ expand_builtin_signbit (tree exp, rtx target)
if (GET_MODE_BITSIZE (imode) > GET_MODE_BITSIZE (rmode))
{
if (BITS_BIG_ENDIAN)
if (BYTES_BIG_ENDIAN)
bitpos = GET_MODE_BITSIZE (imode) - 1 - bitpos;
temp = copy_to_mode_reg (imode, temp);
temp = extract_bit_field (temp, 1, bitpos, 1,
......
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