From 99e395c716b65987be6f026628bc2122990b5347 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Wed, 10 Sep 2008 13:37:18 +0200 Subject: value-prof.c (gimple_ic): Fix tuplification bug. * value-prof.c (gimple_ic): Fix tuplification bug. * sched-deps.c (sched_insns_conditions_mutex_p): Silence unitialized var warning. From-SVN: r140228 --- gcc/sched-deps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/sched-deps.c') diff --git a/gcc/sched-deps.c b/gcc/sched-deps.c index b7aa6b4..784f84f 100644 --- a/gcc/sched-deps.c +++ b/gcc/sched-deps.c @@ -527,7 +527,7 @@ bool sched_insns_conditions_mutex_p (const_rtx insn1, const_rtx insn2) { rtx cond1, cond2; - bool rev1, rev2; + bool rev1 = false, rev2 = false; /* df doesn't handle conditional lifetimes entirely correctly; calls mess up the conditional lifetimes. */ -- cgit v1.1