Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gcc.c-torture / execute / 20040223-1.c
blob940ec0dcffaeec77e951ff15950194a6424b5e7b
1 #include <string.h>
2 #include <stdio.h>
4 void
5 a(void *x,int y)
7 if (y != 1234)
8 abort ();
11 int
12 main()
14 a(strcpy(alloca(100),"abc"),1234);
15 return 0;