summaryrefslogtreecommitdiff
path: root/gcc/stmt.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-04-26 00:15:54 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-04-26 00:15:54 +0000
commit5b7dad94065ac5bbb69f8a71124b00b6e1baf9cb (patch)
tree7b64ed2d96959f1a08898a32af51473ac0098e4f /gcc/stmt.c
parent8f157cdcb53c2138e4cacf4f309b6ff2ac27f257 (diff)
downloadgcc-5b7dad94065ac5bbb69f8a71124b00b6e1baf9cb.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26632 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r--gcc/stmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c
index f3780340cda..41bc736681d 100644
--- a/gcc/stmt.c
+++ b/gcc/stmt.c
@@ -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;