From 8ae91fc0348533eb653f6cbe521c72a412d7f8a9 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Sun, 26 Jan 2003 09:09:23 +0000 Subject: 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 --- gcc/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/expr.c') 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. */ -- cgit v1.1