merge with trunk @ 139506
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / no-trapping-math-vect-111.c
blob673346a675c75b56da1ce2d4cd7499c9d8667746
1 /* { dg-require-effective-target vect_float } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
10 __attribute__ ((noinline)) int
11 main1 (void)
13 int i;
14 float a[N];
16 /* Condition in loop. */
17 /* This loop is vectorized on platforms that support vect_condition. */
18 for (i = 0; i < N; i++)
20 a[i] = (b[i] > 0 ? b[i] : 0);
23 for (i = 0; i < N; i++)
25 if (a[i] != b[i])
26 abort ();
28 return 0;
31 int main (void)
33 check_vect ();
34 return main1 ();
37 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target powerpc*-*-* } } } */
38 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target i?86-*-* x86_64-*-* ia64-*-* } } } */
39 /* { dg-final { cleanup-tree-dump "vect" } } */