diff options
author | Richard Guenther <rguenther@suse.de> | 2008-05-15 08:37:22 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2008-05-15 08:37:22 +0000 |
commit | 8ded35f90c50bd3ff06e75f0bc90dc611360dcac (patch) | |
tree | 99049872595c742fb546abf5ae46e4c0ed30cf52 /gcc/Makefile.in | |
parent | 45ff5edaea467950434730376d3abd8e6cebe196 (diff) | |
download | gcc-8ded35f90c50bd3ff06e75f0bc90dc611360dcac.zip gcc-8ded35f90c50bd3ff06e75f0bc90dc611360dcac.tar.gz gcc-8ded35f90c50bd3ff06e75f0bc90dc611360dcac.tar.bz2 |
re PR tree-optimization/36009 (PRE causes missed loop store motion, store sinking doesn't work)
2008-05-15 Richard Guenther <rguenther@suse.de>
PR tree-optimization/36009
PR tree-optimization/36204
* tree-ssa-loop-im.c (tree-ssa-propagate.h): Include.
(determine_invariantness_stmt): Record the loop a store is
always executed in.
* Makefile.in (tree-ssa-loop-im.o): Add tree-ssa-propagate.h
dependency.
* gcc.dg/tree-ssa/ssa-lim-5.c: New testcase.
* gcc.dg/tree-ssa/ssa-lim-6.c: Likewise..
From-SVN: r135330
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 84bc235..f981b1e 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2206,7 +2206,7 @@ tree-ssa-loop-im.o : tree-ssa-loop-im.c $(TREE_FLOW_H) $(CONFIG_H) \ $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) domwalk.h \ $(PARAMS_H) output.h $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TM_H) coretypes.h \ $(TREE_DUMP_H) tree-pass.h $(FLAGS_H) $(REAL_H) $(BASIC_BLOCK_H) \ - hard-reg-set.h + hard-reg-set.h tree-ssa-propagate.h tree-ssa-math-opts.o : tree-ssa-math-opts.c $(TREE_FLOW_H) $(CONFIG_H) \ $(SYSTEM_H) $(TREE_H) $(TIMEVAR_H) tree-pass.h $(TM_H) $(FLAGS_H) \ alloc-pool.h $(BASIC_BLOCK_H) $(TARGET_H) |