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/passes.def | |
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/passes.def')
-rw-r--r-- | gcc/passes.def | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/passes.def b/gcc/passes.def index 0d8356b..5cd07ae 100644 --- a/gcc/passes.def +++ b/gcc/passes.def @@ -213,6 +213,7 @@ along with GCC; see the file COPYING3. If not see form if possible. */ NEXT_PASS (pass_cse_sincos); NEXT_PASS (pass_optimize_bswap); + NEXT_PASS (pass_laddress); NEXT_PASS (pass_split_crit_edges); NEXT_PASS (pass_pre); NEXT_PASS (pass_sink_code); |