diff options
author | Josh Conner <jconner@apple.com> | 2007-01-18 16:44:50 +0000 |
---|---|---|
committer | Josh Conner <jconner@gcc.gnu.org> | 2007-01-18 16:44:50 +0000 |
commit | bfcb91214958cbe7b86b184bae34f8d07db4dbbc (patch) | |
tree | 39b67be03c215eba0ecd4a3f4ff6459cc36ed03e | |
parent | 370df7db150b3cebad6c88751dcd215bb6d93456 (diff) | |
download | gcc-bfcb91214958cbe7b86b184bae34f8d07db4dbbc.zip gcc-bfcb91214958cbe7b86b184bae34f8d07db4dbbc.tar.gz gcc-bfcb91214958cbe7b86b184bae34f8d07db4dbbc.tar.bz2 |
re PR target/30485 (ICE in rs6000_emit_vector_compare when building with -fno-trapping-math)
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.
From-SVN: r120903
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-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 |
4 files changed, 63 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9171b0d..3b88a02 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +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. + 2007-01-18 Uros Bizjak <ubizjak@gmail.com> * gcc.target/i386/387-8.c: Update comment about optimizing 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 0000000..e9d9570 --- /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 0000000..b4e3249 --- /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 ed5693f..723e9b6 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\]]] \ |