diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2019-11-22 10:56:13 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2019-11-22 10:56:13 +0000 |
commit | aa5521f298fc8042e11e7b352270a33e6c454cb4 (patch) | |
tree | c072a153eaf0109b9236845c6a750234913a9aee /gcc | |
parent | 27071013521b015d17a2666448f27a6ff0c55aca (diff) | |
download | gcc-aa5521f298fc8042e11e7b352270a33e6c454cb4.zip gcc-aa5521f298fc8042e11e7b352270a33e6c454cb4.tar.gz gcc-aa5521f298fc8042e11e7b352270a33e6c454cb4.tar.bz2 |
Fix markup in gcc.dg/vect/vect-cond-reduc-3.c
gcc.dg/vect/vect-cond-reduc-3.c had been failing on
arm-linux-gnueabihf since the test was added, because the test needs
support for VEC_COND_EXPR <float cmp float, int, int> whereas the target
only supports VEC_COND_EXPRs in which all modes are the same. (I have
a fix for that, but it's not really stage 3 material.)
2019-11-22 Richard Sandiford <richard.sandiford@arm.com>
gcc/testsuite/
* gcc.dg/vect/vect-cond-reduc-3.c: Require vect_cond_mixed
rather than vect_condition.
From-SVN: r278612
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/vect-cond-reduc-3.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 181e478..9275c70 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2019-11-22 Richard Sandiford <richard.sandiford@arm.com> + + * gcc.dg/vect/vect-cond-reduc-3.c: Require vect_cond_mixed + rather than vect_condition. + 2019-11-22 Claudiu Zissulescu <claziss@synopsys.com> * gcc.target/arc/add_n-combine.c: Match add1/2/3 instruction in diff --git a/gcc/testsuite/gcc.dg/vect/vect-cond-reduc-3.c b/gcc/testsuite/gcc.dg/vect/vect-cond-reduc-3.c index bb99b95..98f99ab 100644 --- a/gcc/testsuite/gcc.dg/vect/vect-cond-reduc-3.c +++ b/gcc/testsuite/gcc.dg/vect/vect-cond-reduc-3.c @@ -1,6 +1,6 @@ /* Disabling epilogues until we find a better way to deal with scans. */ /* { dg-additional-options "--param vect-epilogues-nomask=0" } */ -/* { dg-require-effective-target vect_condition } */ +/* { dg-require-effective-target vect_cond_mixed } */ /* { dg-require-effective-target vect_float } */ #include "tree-vect.h" |