Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / compile / pr45412.c
blob339854b59af8b474463d2278be21edad6caebf85
1 extern void baz (int, int, int);
3 int j;
5 int
6 bar (void)
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;
16 void
17 foo (void)
19 bar ();
20 bar ();