comparison gcc/testsuite/gcc.c-torture/compile/pr45412.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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