From e5d5c850348ae1b5fb915e70b86af2ef7b019243 Mon Sep 17 00:00:00 2001 From: rguenth Date: Wed, 16 Feb 2011 14:26:43 +0000 Subject: [PATCH] 2011-02-12 Richard Guenther PR tree-optimization/47738 * tree-ssa-loop.c (run_tree_predictive_commoning): Return the TODO from tree_predictive_commoning. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170212 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/tree-ssa-loop.c | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8af5e87..f3a0a2b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2011-02-16 Richard Guenther + + PR tree-optimization/47738 + * tree-ssa-loop.c (run_tree_predictive_commoning): Return + the TODO from tree_predictive_commoning. + 2011-02-15 Jeff Law Revert diff --git a/gcc/tree-ssa-loop.c b/gcc/tree-ssa-loop.c index a1edb51..c7efc7c 100644 --- a/gcc/tree-ssa-loop.c +++ b/gcc/tree-ssa-loop.c @@ -179,8 +179,7 @@ run_tree_predictive_commoning (void) if (!current_loops) return 0; - tree_predictive_commoning (); - return 0; + return tree_predictive_commoning (); } static bool -- 2.7.4