aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2003-01-26 09:09:23 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2003-01-26 09:09:23 +0000
commit8ae91fc0348533eb653f6cbe521c72a412d7f8a9 (patch)
tree2ad5a7723838803a63cebddfa5fd0bdd4b0f3a45 /gcc/expr.c
parentc3297561714960b9ab81ae28213b8f18f8ed6085 (diff)
downloadgcc-8ae91fc0348533eb653f6cbe521c72a412d7f8a9.zip
gcc-8ae91fc0348533eb653f6cbe521c72a412d7f8a9.tar.gz
gcc-8ae91fc0348533eb653f6cbe521c72a412d7f8a9.tar.bz2
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
Diffstat (limited to 'gcc/expr.c')
-rw-r--r--gcc/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index e3c4579..99f3898 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -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. */