Commit f2978871 by Alan Modra Committed by Alan Modra

* expr.c (emit_group_load_1): Don't die on const_int orig_src.

From-SVN: r91510
parent c621016b
2004-11-30 Alan Modra <amodra@bigpond.net.au>
* expr.c (emit_group_load_1): Don't die on const_int orig_src.
2004-11-29 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR pch/14940
......
......@@ -1570,8 +1570,10 @@ emit_group_load_1 (rtx *tmps, rtx dst, rtx orig_src, tree type, int ssize)
gcc_assert (GET_CODE (dst) == PARALLEL);
if (!SCALAR_INT_MODE_P (m)
&& !MEM_P (orig_src) && GET_CODE (orig_src) != CONCAT)
if (m != VOIDmode
&& !SCALAR_INT_MODE_P (m)
&& !MEM_P (orig_src)
&& GET_CODE (orig_src) != CONCAT)
{
enum machine_mode imode = int_mode_for_mode (GET_MODE (orig_src));
if (imode == BLKmode)
......
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