OSDN Git Service

* gcc.c-torture/compile/20021120-1.c: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20000923-1.c
1 const int a = 3;
2 const int b = 50;
3
4 void foo (void)
5 {
6   long int x[a][b];
7   asm ("" : : "r" (x) : "memory");
8 }