aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/tree-prof/pr51719.C
blob: 01e81ff66eda0f46fafcb25ea69c4252bf4b03cb (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
25
26
27
// PR tree-optimization/51719
// { dg-options "-O -fpartial-inlining" }

int
bar (void)
{
  throw 1;
}

int __attribute__ ((noinline, noclone))
foo (int (*f) (void))
{
  try
  {
    return (*f) ();
  }
  catch (...)
  {
  }
  return 0;
}

int
main ()
{
  return foo (bar);
}