1 const int a = 3;
2 const int b = 50;
3 
foo(void)4 void foo (void)
5 {
6   long int x[a][b];
7   asm ("" : : "r" (x) : "memory");
8 }
9