Reverted r249005 until PowerPC and AIX issues sorted.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr60267.c
blobc95def2399ae6bb2fadfb5a0df689f03985a1d85
1 /* PR c++/60267 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -save-temps" } */
5 void
6 foo (int *a, int *b, int *c)
8 int i;
9 #pragma GCC ivdep
10 for (i = 0; i < 64; i++)
11 a[i] = b[i] * c[i];