OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr45412.c
1 extern void baz (int, int, int);
2
3 int j;
4
5 int
6 bar (void)
7 {
8   int n = 0, *np = &n;
9   if (j)
10     baz (0, 0, 0);
11   if (j)
12     baz (0, 0, 0);
13   return n;
14 }
15
16 void
17 foo (void)
18 {
19   bar ();
20   bar ();
21 }
22