PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr77767.c
blob21725a56bfe7d94b57c9088481c334d49b6d3c18
1 /* PR c/77767 */
3 void
4 foo (int a, int b[a++], int c, int d[c++])
6 if (a != 2 || c != 2)
7 __builtin_abort ();
10 int
11 main ()
13 int e[10];
14 foo (1, e, 1, e);
15 return 0;