summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/debug/pr46338.C
blob: dfa92452da1a67d08778362f06d0d23a26fb1c06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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++)
    ;
}