diff options
author | Toshiyasu Morita <tm@netcom.com> | 1999-04-26 00:15:54 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-04-25 18:15:54 -0600 |
commit | 07444f1d90c7b70f892063a0ae81bc43a68f6633 (patch) | |
tree | 7b64ed2d96959f1a08898a32af51473ac0098e4f /gcc/function.c | |
parent | c1709d0c7ad2a6dbcda2bde402e2fd747fa6cfd9 (diff) | |
download | gcc-07444f1d90c7b70f892063a0ae81bc43a68f6633.zip gcc-07444f1d90c7b70f892063a0ae81bc43a68f6633.tar.gz gcc-07444f1d90c7b70f892063a0ae81bc43a68f6633.tar.bz2 |
fold-const.c (make_range): Always initialize arg0 and arg1.
* fold-const.c (make_range): Always initialize arg0 and arg1.
(fold): Simlarly for alt0 and alt1.
* function.c (fixup_var_refs_insns): Initialize insn_list.
(instantiate_virtual_regs_1): Initialize offset.
* optabs.c (expand_binop): Initialize carry_in, carry_out, op0_xhigh
and op1_xhigh.
* stmt.c (expand_end_case): Initialize minval and maxval.
From-SVN: r26632
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c index 6644014..d9274bf 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -1827,7 +1827,7 @@ fixup_var_refs_insns (var, promoted_mode, unsignedp, insn, toplevel, ht) struct hash_table *ht; { rtx call_dest = 0; - rtx insn_list; + rtx insn_list = NULL_RTX; /* If we already know which INSNs reference VAR there's no need to walk the entire instruction chain. */ @@ -3649,7 +3649,7 @@ instantiate_virtual_regs_1 (loc, object, extra_insns) rtx x; RTX_CODE code; rtx new = 0; - HOST_WIDE_INT offset; + HOST_WIDE_INT offset = 0; rtx temp; rtx seq; int i, j; |