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/stmt.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/stmt.c')
-rw-r--r-- | gcc/stmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5037,7 +5037,7 @@ void expand_end_case (orig_index) tree orig_index; { - tree minval, maxval, range, orig_minval; + tree minval = NULL_TREE, maxval = NULL_TREE, range, orig_minval; rtx default_label = 0; register struct case_node *n; unsigned int count; |