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