expr.c (emit_group_store): Initialize dst with CONST0_RTX for the appropriate mode.

* expr.c (emit_group_store): Initialize dst with CONST0_RTX
for the appropriate mode.

From-SVN: r61828
This commit is contained in:
Alexandre Oliva 2003-01-26 09:09:23 +00:00 committed by Alexandre Oliva
parent c329756171
commit 8ae91fc034
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-01-26 Alexandre Oliva <aoliva@redhat.com>
* expr.c (emit_group_store): Initialize dst with CONST0_RTX
for the appropriate mode.
2003-01-26 Alexandre Oliva <aoliva@redhat.com>
* calls.c (emit_library_call_value_1): Handle return values

View File

@ -2445,7 +2445,7 @@ emit_group_store (orig_dst, src, ssize)
{
dst = gen_reg_rtx (GET_MODE (orig_dst));
/* Make life a bit easier for combine. */
emit_move_insn (dst, const0_rtx);
emit_move_insn (dst, CONST0_RTX (GET_MODE (orig_dst)));
}
/* Process the pieces. */