rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20000923-1.c

9 lines
111 B
C

const int a = 3;
const int b = 50;
void foo (void)
{
long int x[a][b];
asm ("" : : "r" (x) : "memory");
}