diff options
author | jconner <jconner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-18 16:44:50 +0000 |
---|---|---|
committer | jconner <jconner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-01-18 16:44:50 +0000 |
commit | 61ab55fa4a07001828ade78127075e2e355c77ca (patch) | |
tree | 39b67be03c215eba0ecd4a3f4ff6459cc36ed03e /gcc/testsuite/gcc.dg/vect | |
parent | fa4b183bf8ce1fbed9f61691e2697ed556958497 (diff) | |
download | gcc-61ab55fa4a07001828ade78127075e2e355c77ca.tar.gz |
2007-01-18 Josh Conner <jconner@apple.com>
PR target/30485
* gcc.dg/vect/vect.exp: Add support for no-trapping-math tests.
* gcc.dg/vect/no-trapping-math-1: New.
* gcc.dg/vect/no-trapping-math-2: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120903 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.dg/vect')
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/no-trapping-math-1.c | 12 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/no-trapping-math-2.c | 38 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/vect.exp | 6 |
3 files changed, 56 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/vect/no-trapping-math-1.c b/gcc/testsuite/gcc.dg/vect/no-trapping-math-1.c new file mode 100644 index 00000000000..e9d9570146b --- /dev/null +++ b/gcc/testsuite/gcc.dg/vect/no-trapping-math-1.c @@ -0,0 +1,12 @@ +/* Test for pr30485. */ +/* { dg-do compile } */ +/* { dg-require-effective-target vect_condition } */ +void +foo (float a[32], float b[2][32]) +{ + int i; + for (i = 0; i < 32; i++) + a[i] = (b[0][i] > b[1][i]) ? b[0][i] : b[1][i]; +} + +/* { dg-final { cleanup-tree-dump "vect" } } */ diff --git a/gcc/testsuite/gcc.dg/vect/no-trapping-math-2.c b/gcc/testsuite/gcc.dg/vect/no-trapping-math-2.c new file mode 100644 index 00000000000..b4e324961de --- /dev/null +++ b/gcc/testsuite/gcc.dg/vect/no-trapping-math-2.c @@ -0,0 +1,38 @@ +/* Test for pr30485. */ +/* { dg-require-effective-target vect_float } */ + +#include <stdarg.h> +#include "tree-vect.h" + +#define N 16 + +int +main1 (void) +{ + int i; + float a[N]; + float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45}; + + /* Condition in loop. */ + /* This loop is vectorized on platforms that support vect_condition. */ + for (i = 0; i < N; i++) + { + a[i] = (b[i] > 0 ? b[i] : 0); + } + + for (i = 0; i < N; i++) + { + if (a[i] != b[i]) + abort (); + } + return 0; +} + +int main (void) +{ + check_vect (); + return main1 (); +} + +/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_condition } } } */ +/* { dg-final { cleanup-tree-dump "vect" } } */ diff --git a/gcc/testsuite/gcc.dg/vect/vect.exp b/gcc/testsuite/gcc.dg/vect/vect.exp index ed5693f0964..723e9b6838c 100644 --- a/gcc/testsuite/gcc.dg/vect/vect.exp +++ b/gcc/testsuite/gcc.dg/vect/vect.exp @@ -150,6 +150,12 @@ lappend DEFAULT_VECTCFLAGS "-funswitch-loops" dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/unswitch-loops-*.\[cS\]]] \ "" $DEFAULT_VECTCFLAGS +# -fno-trapping-math tests +set DEFAULT_VECTCFLAGS $SAVED_DEFAULT_VECTCFLAGS +lappend DEFAULT_VECTCFLAGS "-fno-trapping-math" +dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/no-trapping-math-*.\[cS\]]] \ + "" $DEFAULT_VECTCFLAGS + # With -Os lappend DEFAULT_VECTCFLAGS "-Os" dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/Os-vect-*.\[cS\]]] \ |