OSDN Git Service

2011-09-29 Artjoms Sinkarovs <artyom.shinkaroff@gmail.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 941202-1.c
1 g (x, y)
2 {
3   if (x != 3)
4     abort ();
5 }
6
7 static inline
8 f (int i)
9 {
10   int *tmp;
11
12   tmp = (int *) alloca (sizeof (i));
13   *tmp = i;
14   g (*tmp, 0);
15 }
16
17 main ()
18 {
19   f (3);
20   exit (0);
21 };