re PR middle-end/33436 (Bad constant output with TARGET_ASM_ALIGNED_DI_OP)
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>
Fri, 28 Sep 2007 00:54:29 +0000 (00:54 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Fri, 28 Sep 2007 00:54:29 +0000 (00:54 +0000)
PR middle-end/33436
* expr.c (emit_group_load_1): Split constant double when destination
length is half source length.

From-SVN: r128855

gcc/ChangeLog
gcc/expr.c

index bdb9d2237cdfc0bc6ae99f5f6e1802316941b530..42ace4ab0dfe8912f5a092a64360ac0b604a4c35 100644 (file)
@@ -1,3 +1,9 @@
+2007-09-27  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+       PR middle-end/33436
+       * expr.c (emit_group_load_1): Split constant double when destination
+       length is half source length.
+
 2007-09-27  Richard Sandiford  <rsandifo@nildram.co.uk>
 
        * config/mips/mips.h (PTF_AVOID_BRANCHLIKELY): New macro.
index ff3258d746eb5096c78d9c12273eaa2443e82c95..9d2a61ad78293853ede91087f926421453405705 100644 (file)
@@ -1776,8 +1776,25 @@ emit_group_load_1 (rtx *tmps, rtx dst, rtx orig_src, tree type, int ssize)
       else if (CONSTANT_P (src) && GET_MODE (dst) != BLKmode
                && XVECLEN (dst, 0) > 1)
         tmps[i] = simplify_gen_subreg (mode, src, GET_MODE(dst), bytepos);
-      else if (CONSTANT_P (src)
-              || (REG_P (src) && GET_MODE (src) == mode))
+      else if (CONSTANT_P (src))
+       {
+         HOST_WIDE_INT len = (HOST_WIDE_INT) bytelen;
+
+         if (len == ssize)
+           tmps[i] = src;
+         else
+           {
+             rtx first, second;
+
+             gcc_assert (2 * len == ssize);
+             split_double (src, &first, &second);
+             if (i)
+               tmps[i] = second;
+             else
+               tmps[i] = first;
+           }
+       }
+      else if (REG_P (src) && GET_MODE (src) == mode)
        tmps[i] = src;
       else
        tmps[i] = extract_bit_field (src, bytelen * BITS_PER_UNIT,