Commit 75897075 by Richard Kenner Committed by Richard Kenner

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

From-SVN: r51123
parent 312687cf
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>
......
......@@ -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. */
......
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