aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20000923-1.c
blob: 9ed98868206265e3a2a2bbf49879edf07c4624fb (plain)
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");
}