PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 941202-1.c
blobb97ae0e34a736be0b7ac099605dd3e6513536fab
1 /* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */
2 g (x, y)
4 if (x != 3)
5 abort ();
8 static inline
9 f (int i)
11 int *tmp;
13 tmp = (int *) alloca (sizeof (i));
14 *tmp = i;
15 g (*tmp, 0);
18 main ()
20 f (3);
21 exit (0);