blob: 4fb534286d9a636dd91e13e6e74260b4ac9378b2 [file] [log] [blame]
/* { dg-do compile } */
int *a, *b, *c;
void foo()
{
int i, j;
// The initialization shall declare or initialize a *SINGLE* variable.
#pragma simd
for (i=0, j=5; i < 1000; i++) // { dg-error "expected ';' before ','" }
a[i] = b[j];
}