OSDN Git Service

PR tree-optimization/40238
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / pr27151.c
1 /* { dg-do compile } */
2
3 /* We were creating a float vector for the vis_type == 1
4    test, which we ICEd on.  Now we simply punt here.  */
5
6 float vs_data[75];
7 void vis_clear_data ()
8 {
9   int vis_type, i;
10   for (i = 0; i < 75; i++)
11     {
12       vs_data[i] = (vis_type == 1);
13     }
14 }
15
16 /* { dg-final { cleanup-tree-dump "vect" } } */