aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/tree-prof/reorder_class2.h
blob: ee3ed109b9eef616b4c366a3a2e87b932991ba6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12

struct B {
  virtual int foo();
};

int B::foo()
{
  return 2;
}