tree-optimization/115602 - SLP CSE results in cycles
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 941202-1.c
blobdb45399a2aa8484270a9ff4f42d3e5dc73450d6b
1 /* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */
2 /* { dg-additional-options "-std=gnu89" } */
3 g (x, y)
5 if (x != 3)
6 abort ();
9 static inline
10 f (int i)
12 int *tmp;
14 tmp = (int *) alloca (sizeof (i));
15 *tmp = i;
16 g (*tmp, 0);
19 main ()
21 f (3);
22 exit (0);