2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-float-extend-1.c
blob3035ee392b392249b50a2a1ef6eafc946e5d1f14
1 /* { dg-require-effective-target vect_double } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 32
8 float fb[N] = {0.4,3.5,6.6,9.4,12.5,15.6,18.4,21.5,24.6,27.4,30.5,33.6,36.4,39.5,42.6,45.4,0.5,3.6,6.4,9.5,12.6,15.4,18.5,21.6,24.4,27.5,30.6,33.4,36.5,39.6,42.4,45.5};
9 double da[N];
11 __attribute__ ((noinline)) int
12 main1 ()
14 int i;
16 /* float -> double */
17 for (i = 0; i < N; i++)
19 da[i] = (double) fb[i];
22 /* check results: */
23 for (i = 0; i < N; i++)
25 if (da[i] != (double) fb[i])
26 abort ();
29 return 0;
32 int
33 main (void)
35 check_vect ();
37 return main1 ();
40 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail spu*-*-* } } } */
41 /* { dg-final { cleanup-tree-dump "vect" } } */