diff options
author | Alan Modra <amodra@bigpond.net.au> | 2004-11-30 03:39:50 +0000 |
---|---|---|
committer | Alan Modra <amodra@gcc.gnu.org> | 2004-11-30 14:09:50 +1030 |
commit | f2978871b26c69d516916d280e81cc1f9b460416 (patch) | |
tree | a0952f80158b3a95afebe6c0b5e84b350bce342d /gcc/expr.c | |
parent | c621016bc82b5cec8d34a0646a8b533f65880297 (diff) | |
download | gcc-f2978871b26c69d516916d280e81cc1f9b460416.zip gcc-f2978871b26c69d516916d280e81cc1f9b460416.tar.gz gcc-f2978871b26c69d516916d280e81cc1f9b460416.tar.bz2 |
* expr.c (emit_group_load_1): Don't die on const_int orig_src.
From-SVN: r91510
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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) |