diff options
author | Richard Guenther <rguenther@suse.de> | 2011-02-16 14:26:43 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2011-02-16 14:26:43 +0000 |
commit | 65aab64fe9dce548577013326d08606ade204751 (patch) | |
tree | 674fc223974d95e6ab7008341848a6e28775b1e7 | |
parent | d2995f218548fb6e506348377bf150c69dd231a6 (diff) | |
download | gcc-65aab64fe9dce548577013326d08606ade204751.zip gcc-65aab64fe9dce548577013326d08606ade204751.tar.gz gcc-65aab64fe9dce548577013326d08606ade204751.tar.bz2 |
re PR tree-optimization/47738 (ICE: verify_ssa failed: no immediate_use list with -O3 -fno-tree-vectorize)
2011-02-12 Richard Guenther <rguenther@suse.de>
PR tree-optimization/47738
* tree-ssa-loop.c (run_tree_predictive_commoning): Return
the TODO from tree_predictive_commoning.
From-SVN: r170212
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | 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 <rguenther@suse.de> + + PR tree-optimization/47738 + * tree-ssa-loop.c (run_tree_predictive_commoning): Return + the TODO from tree_predictive_commoning. + 2011-02-15 Jeff Law <law@redhat.com> 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 |