PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20040223-1.c
blobc295e4b09eaeda683e53f9acff83f01c4b425212
1 /* { dg-require-effective-target alloca } */
2 #include <string.h>
3 #include <stdio.h>
5 void
6 a(void *x,int y)
8 if (y != 1234)
9 abort ();
12 int
13 main()
15 a(strcpy(alloca(100),"abc"),1234);
16 return 0;