blob: dfa92452da1a67d08778362f06d0d23a26fb1c06 [file] [log] [blame]
// PR debug/46338
// { dg-do compile }
// { dg-options "-O -fprofile-generate -fcompare-debug" }
void bar ();
struct S
{
int f ()
{
}
};
S *s;
void
foo (int x)
{
if (x)
return;
bar ();
for (int j = 0; j < s->f (); j++)
;
}