OSDN Git Service

Testcase for PR 169.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 20040223-1.c
1 #include <string.h>
2 #include <stdio.h>
3
4 void
5 a(void *x,int y)
6 {
7   if (y != 1234)
8     abort ();
9 }
10
11 int
12 main()
13 {
14   a(strcpy(alloca(100),"abc"),1234);
15   return 0;
16 }