OSDN Git Service

PR tree-optimization/40542
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / pr22506.c
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
3
4 float x[3];
5
6 void foo()
7 {
8     int i;
9
10     for (i=0; i<5; ++i) x[i]=0;
11     for (i=0; i<4; ++i) ;
12 }
13
14 /* { dg-final { cleanup-tree-dump "vect" } } */