aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr46255.c
blob: 3a1639085de36db9a7d6d6e3587be9016327450b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR debug/46255 */
/* { dg-do compile } */
/* { dg-require-profiling "-fprofile-generate" } */
/* { dg-options "-fcompare-debug -fprofile-generate -O" } */

int bar (void);

void
foo (int i)
{
  while (i)
    i = bar ();
}