URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [debug/] [pr47106.C] - Rev 724
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-options "-O -fpartial-inlining -flto -fconserve-stack -fcompare-debug" }
// { dg-require-effective-target lto }
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 ());
}
Go to most recent revision | Compare with Previous | Blame | View Log