blob: 9ef276ad0a721ff545469ee82bc75d56306b69e5 [file] [log] [blame]
// { dg-do compile }
// { dg-options "-O -fpartial-inlining -flto -fconserve-stack -fcompare-debug" }
// { dg-require-effective-target lto }
// { dg-xfail-if "" { powerpc-ibm-aix* } { "*" } { "" } }
void end (int, int) __attribute__ ((__noreturn__));
struct S
{
int i;
S *s;
};
inline bool f (S *s)
{
if (!s->s)
end (0, 0);
return s->s == s;
}
inline bool
baz (S s1, S)
{
while (f (&s1));
}
inline bool
bar (S s1, S s2, S)
{
baz (s1, s2);
}
S getS ();
bool
foo ()
{
bar (getS (), getS (), getS ());
}