LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-113.c
bloba9d45ce9fcc21195030dfcdf773ffc3a41e48a37
1 /* { dg-require-effective-target vect_float } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 __attribute__ ((noinline)) int
9 main1 (void)
11 int i;
12 float a[N];
14 /* Induction and type conversion. */
15 for ( i = 0; i < N; i++)
17 a[i] = i;
20 for ( i = 0; i < N; i++)
22 if (a[i] != i)
23 abort ();
26 return 0;
29 int main (void)
31 check_vect ();
32 return main1 ();
35 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target powerpc*-*-* i?86-*-* x86_64-*-* } } } */