OSDN Git Service

* gcc.c-torture/execute/990628-1.c: Tweak to work on targets
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 970217-1.c
1 sub (int i, int array[i++])
2 {
3   return i;
4 }
5
6 main()
7 {
8   int array[10];
9   exit (sub (10, array) != 11);
10 }