OSDN Git Service

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