comparison gcc/testsuite/g++.dg/debug/pr47106.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
20 20
21 inline bool 21 inline bool
22 baz (S s1, S) 22 baz (S s1, S)
23 { 23 {
24 while (f (&s1)); 24 while (f (&s1));
25
26 return true;
25 } 27 }
26 28
27 inline bool 29 inline bool
28 bar (S s1, S s2, S) 30 bar (S s1, S s2, S)
29 { 31 {
30 baz (s1, s2); 32 return baz (s1, s2);
31 } 33 }
32 34
33 S getS (); 35 S getS ();
34 36
35 bool 37 bool
36 foo () 38 foo ()
37 { 39 {
38 bar (getS (), getS (), getS ()); 40 return bar (getS (), getS (), getS ());
39 } 41 }