From 65aab64fe9dce548577013326d08606ade204751 Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Wed, 16 Feb 2011 14:26:43 +0000 Subject: [PATCH] re PR tree-optimization/47738 (ICE: verify_ssa failed: no immediate_use list with -O3 -fno-tree-vectorize) 2011-02-12 Richard Guenther PR tree-optimization/47738 * tree-ssa-loop.c (run_tree_predictive_commoning): Return the TODO from tree_predictive_commoning. From-SVN: r170212 --- 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 8af5e874750..f3a0a2b2217 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 a1edb51c13d..c7efc7c0f6e 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.30.2