diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/vect/no-trapping-math-vect-ifcvt-14.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/no-trapping-math-vect-ifcvt-14.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/vect/no-trapping-math-vect-ifcvt-14.c b/gcc/testsuite/gcc.dg/vect/no-trapping-math-vect-ifcvt-14.c index a5a59366bdc..58e6dc0a9ca 100644 --- a/gcc/testsuite/gcc.dg/vect/no-trapping-math-vect-ifcvt-14.c +++ b/gcc/testsuite/gcc.dg/vect/no-trapping-math-vect-ifcvt-14.c @@ -8,12 +8,13 @@ #define N 16 #define MAX 42 +float A[N] = {36,39,42,45,43,32,21,12,23,34,45,56,67,78,89,11}; +float B[N] = {42,42,42,0,0,42,42,42,42,42,0,0,0,0,0,42}; + extern void abort(void); int main () { - float A[N] = {36,39,42,45,43,32,21,12,23,34,45,56,67,78,89,11}; - float B[N] = {42,42,42,0,0,42,42,42,42,42,0,0,0,0,0,42}; int i, j; check_vect (); |