diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2018-02-07 09:12:48 +0000 |
---|---|---|
committer | Christophe Lyon <clyon@gcc.gnu.org> | 2018-02-07 10:12:48 +0100 |
commit | f8e54f64262dc5a3dc03f094091eda4fe7886537 (patch) | |
tree | 7d01b3c7d87288caa5bc3815b360f56fceda9b88 | |
parent | 40ff1a2d1dd5ab23649e2df91a11534f3e654ace (diff) | |
download | gcc-f8e54f64262dc5a3dc03f094091eda4fe7886537.zip gcc-f8e54f64262dc5a3dc03f094091eda4fe7886537.tar.gz gcc-f8e54f64262dc5a3dc03f094091eda4fe7886537.tar.bz2 |
[testsuite] Fix gcc.dg/cse_recip.c for AArch64 after r257181.
2018-02-07 Christophe Lyon <christophe.lyon@linaro.org>
PR tree-optimization/83008
* gcc.dg/cse_recip.c: Add -fno-tree-slp-vectorize.
From-SVN: r257438
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/cse_recip.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ac3949a..8737eef 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-02-07 Christophe Lyon <christophe.lyon@linaro.org> + + PR tree-optimization/83008 + * gcc.dg/cse_recip.c: Add -fno-tree-slp-vectorize. + 2018-02-07 Jakub Jelinek <jakub@redhat.com> PR tree-optimization/84235 diff --git a/gcc/testsuite/gcc.dg/cse_recip.c b/gcc/testsuite/gcc.dg/cse_recip.c index 88cba99..4921662 100644 --- a/gcc/testsuite/gcc.dg/cse_recip.c +++ b/gcc/testsuite/gcc.dg/cse_recip.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-Ofast -fdump-tree-optimized-raw" } */ +/* { dg-options "-Ofast -fdump-tree-optimized-raw -fno-tree-slp-vectorize" } */ void cse_recip (float x, float y, float *a) |