libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / no-trapping-math-vect-111.c
blobae5d23fab86a4dd363e3df7310571ac93fc93f81
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 #pragma GCC novector
24 for (i = 0; i < N; i++)
26 if (a[i] != b[i])
27 abort ();
29 return 0;
32 int main (void)
34 check_vect ();
35 return main1 ();
38 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target powerpc*-*-* } } } */
39 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target i?86-*-* x86_64-*-* ia64-*-* } } } */