diff options
author | Marek Polacek <polacek@redhat.com> | 2015-07-09 09:01:51 +0000 |
---|---|---|
committer | Marek Polacek <mpolacek@gcc.gnu.org> | 2015-07-09 09:01:51 +0000 |
commit | ca87c493f78fc19c4196e28cfe137add40bf2932 (patch) | |
tree | 35e0e97002573399f487879b3239c90025aee9fd /gcc/Makefile.in | |
parent | 6c909a6a21c2046b41d571f68843334e315ba6a1 (diff) | |
download | gcc-ca87c493f78fc19c4196e28cfe137add40bf2932.zip gcc-ca87c493f78fc19c4196e28cfe137add40bf2932.tar.gz gcc-ca87c493f78fc19c4196e28cfe137add40bf2932.tar.bz2 |
re PR tree-optimization/66718 (Non-invariant ADDR_EXPR not vectorized)
PR tree-optimization/66718
* Makefile.in (OBJS): Add gimple-laddress.o.
* passes.def: Schedule pass_laddress.
* timevar.def (DEFTIMEVAR): Add TV_GIMPLE_LADDRESS.
* tree-pass.h (make_pass_laddress): Declare.
* gimple-laddress.c: New file.
* gcc.dg/vect/vect-126.c: New test.
From-SVN: r225604
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 89eda96..1817025 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1255,6 +1255,7 @@ OBJS = \ gimple-expr.o \ gimple-iterator.o \ gimple-fold.o \ + gimple-laddress.o \ gimple-low.o \ gimple-match.o \ generic-match.o \ |