diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2019-01-22 17:49:46 +0000 |
---|---|---|
committer | Wilco Dijkstra <wilco@gcc.gnu.org> | 2019-01-22 17:49:46 +0000 |
commit | df69e824488337a4a85f8a4893e0f0081f45cd72 (patch) | |
tree | 54d4604633d9e554e03b7c47451f48cb6a9f67b5 | |
parent | 83f6f4e5f42e74459ceaa17ad45e45983afae100 (diff) | |
download | gcc-df69e824488337a4a85f8a4893e0f0081f45cd72.zip gcc-df69e824488337a4a85f8a4893e0f0081f45cd72.tar.gz gcc-df69e824488337a4a85f8a4893e0f0081f45cd72.tar.bz2 |
Fix vect-nop-move.c test
Fix a failing test - changes in Combine mean the test now fails
eventhough the generated code is the same. Given there are several
AArch64-specific tests for vec-select, remove the scanning of Combine
output. Committed as trivial fix.
testsuite/
PR rtl-optimization/87763
* gcc.dg/vect/vect-nop-move.c: Fix testcase on AArch64.
From-SVN: r268159
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/vect-nop-move.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5fb19c4..86212e5 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2019-01-22 Wilco Dijkstra <wdijkstr@arm.com> + + PR rtl-optimization/87763 + * gcc.dg/vect/vect-nop-move.c: Fix testcase on AArch64. + 2019-01-22 H.J. Lu <hongjiu.lu@intel.com> PR target/88954 diff --git a/gcc/testsuite/gcc.dg/vect/vect-nop-move.c b/gcc/testsuite/gcc.dg/vect/vect-nop-move.c index 910e8c2..2b295ed 100644 --- a/gcc/testsuite/gcc.dg/vect/vect-nop-move.c +++ b/gcc/testsuite/gcc.dg/vect/vect-nop-move.c @@ -1,5 +1,4 @@ /* { dg-require-effective-target vect_float } */ -/* { dg-additional-options "-fdump-rtl-combine-details" } */ #include "tree-vect.h" @@ -76,5 +75,3 @@ main () check_vect (); return test (); } - -/* { dg-final { scan-rtl-dump "deleting noop move" "combine" { target aarch64*-*-* } } } */ |