2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 941202-1.c
blob72d0b33e924a3be411f17dc3e5ddf349a0a078f6
1 g (x, y)
3 if (x != 3)
4 abort ();
7 static inline
8 f (int i)
10 int *tmp;
12 tmp = (int *) alloca (sizeof (i));
13 *tmp = i;
14 g (*tmp, 0);
17 main ()
19 f (3);
20 exit (0);