tree-optimization/115597 - allow CSE of two-operator VEC_PERM nodes
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20040223-1.c
blob4ec6ba71aaafef3c8f1ed56ea4a84da1ccd4336c
1 /* { dg-require-effective-target alloca } */
2 /* { dg-additional-options "-fpermissive" } */
3 #include <string.h>
4 #include <stdio.h>
6 void
7 a(void *x,int y)
9 if (y != 1234)
10 abort ();
13 int
14 main()
16 a(strcpy(alloca(100),"abc"),1234);
17 return 0;