[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / g++.dg / debug / pr46338.C
blob7e242b9bc3dddea258ec6d529eff63195e7ad8b5
1 // PR debug/46338
2 // { dg-do compile }
3 // { dg-require-profiling "-fprofile-generate" }
4 // { dg-options "-O -fprofile-generate -fcompare-debug" }
6 void bar ();
8 struct S
10   int f ()
11   {
12     return 0;
13   }
16 S *s;
18 void
19 foo (int x)
21   if (x)
22     return;
23   bar ();
24   for (int j = 0; j < s->f (); j++)
25     ;