summaryrefslogtreecommitdiff
path: root/gcc/sched-deps.c
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2008-09-10 11:37:18 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2008-09-10 11:37:18 +0000
commitda7f8ea09f12f2d836d9842c024d5c9077b15465 (patch)
tree9efba21d60dd7b56a9f98eeb5dc973292ff8fa18 /gcc/sched-deps.c
parent86ed2c774c6524ddd483848d613c79d9d078d18d (diff)
downloadgcc-da7f8ea09f12f2d836d9842c024d5c9077b15465.tar.gz
* value-prof.c (gimple_ic): Fix tuplification bug.
* sched-deps.c (sched_insns_conditions_mutex_p): Silence unitialized var warning. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@140228 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sched-deps.c')
-rw-r--r--gcc/sched-deps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sched-deps.c b/gcc/sched-deps.c
index b7aa6b4d9eb..784f84ff63d 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. */