* expr.c (emit_group_store): Don't copy const0_rtx to a CONCAT.

From-SVN: r51123
This commit is contained in:
Richard Kenner 2002-03-21 14:58:21 +00:00 committed by Richard Kenner
parent 312687cfa8
commit 75897075ac
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Mar 21 09:50:48 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* expr.c (emit_group_store): Don't copy const0_rtx to a CONCAT.
2002-03-21 Eric Botcazou <ebotcazou@multimania.com>
Richard Henderson <rth@redhat.com>

View File

@ -2100,7 +2100,7 @@ emit_group_store (orig_dst, src, ssize)
emit_group_load (dst, temp, ssize);
return;
}
else if (GET_CODE (dst) != MEM)
else if (GET_CODE (dst) != MEM && GET_CODE (dst) != CONCAT)
{
dst = gen_reg_rtx (GET_MODE (orig_dst));
/* Make life a bit easier for combine. */