ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/arc/loop-1.c

13 lines
177 B
C

/* { dg-do compile } */
/* { dg-options "-O2" } */
/* Check how we handle empty body loops. */
int a;
void fn1(void) {
int i;
for (; i < 8; i++) {
double A[a];
}
}