From: Jan Hubicka Date: Sun, 28 Oct 2001 16:10:12 +0000 (+0100) Subject: expr.c (emit_group_load): Support CONCATs by storing them to memory and reloading. X-Git-Tag: prereleases/libstdc++-3.0.95~1323 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=58f698416a94f2068d59a71cc6b93ede60f7a405;p=thirdparty%2Fgcc.git expr.c (emit_group_load): Support CONCATs by storing them to memory and reloading. * expr.c (emit_group_load): Support CONCATs by storing them to memory and reloading. From-SVN: r46586 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ee0f8e613364..5cb7bfd7c554 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Sun Oct 28 17:05:36 CET 2001 Jan Hubicka + + * expr.c (emit_group_load): Support CONCATs by storing them to memory + and reloading. + Sun Oct 28 09:59:54 2001 Richard Kenner * expr.c (store_constructor_field): Only call adjust_address on MEM. diff --git a/gcc/expr.c b/gcc/expr.c index c0ddd98042eb..b5c5989991fd 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -2020,6 +2020,14 @@ emit_group_load (dst, orig_src, ssize, align) else if (bytepos == (HOST_WIDE_INT) GET_MODE_SIZE (GET_MODE (XEXP (src, 0))) && bytelen == GET_MODE_SIZE (GET_MODE (XEXP (src, 1)))) tmps[i] = XEXP (src, 1); + else if (bytepos == 0) + { + rtx mem; + mem = assign_stack_temp (GET_MODE (src), + GET_MODE_SIZE (GET_MODE (src)), 0); + emit_move_insn (mem, src); + tmps[i] = change_address (mem, mode, XEXP (mem, 0)); + } else abort (); }