diff options
author | Richard Guenther <rguenther@suse.de> | 2010-07-04 16:08:21 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2010-07-04 16:08:21 +0000 |
commit | 17fc049f3443386e244e5be2274f507809153634 (patch) | |
tree | 59e80ed510f8ae3365e1b7da08565e3b031f12d9 /gcc/Makefile.in | |
parent | c9dfc4144a464f1ee0306ff388ee85e2c178f18c (diff) | |
download | gcc-17fc049f3443386e244e5be2274f507809153634.zip gcc-17fc049f3443386e244e5be2274f507809153634.tar.gz gcc-17fc049f3443386e244e5be2274f507809153634.tar.bz2 |
re PR rtl-optimization/44479 (false dependencies are computed after vectorization)
2010-07-04 Richard Guenther <rguenther@suse.de>
PR tree-optimization/44479
* tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Avoid
extra SSA name copy statements which preserves points-to
information.
* tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref):
Copy points-to information for all pointers. Properly handle
MEM_REFs.
(vect_create_data_ref_ptr): Likewise. Avoid extra SSA name
copy statements.
* Makefile.in (tree-ssa-loop-ivopts.o): Add tree-ssa-propagate.h
dependency.
From-SVN: r161802
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 f57cd71..299062b 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2566,7 +2566,7 @@ tree-ssa-loop-ivopts.o : tree-ssa-loop-ivopts.c $(TREE_FLOW_H) $(CONFIG_H) \ $(TREE_PASS_H) $(GGC_H) $(RECOG_H) insn-config.h $(HASHTAB_H) $(SCEV_H) \ $(CFGLOOP_H) $(PARAMS_H) langhooks.h $(BASIC_BLOCK_H) \ tree-affine.h pointer-set.h $(TARGET_H) tree-pretty-print.h \ - gimple-pretty-print.h + gimple-pretty-print.h tree-ssa-propagate.h tree-affine.o : tree-affine.c tree-affine.h $(CONFIG_H) pointer-set.h \ $(SYSTEM_H) $(TREE_H) $(GIMPLE_H) \ output.h $(DIAGNOSTIC_H) coretypes.h $(TREE_DUMP_H) $(FLAGS_H) \ |