aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ipa/devirt-39.C
blob: fbeea126e190a6798c285711a34bb447dde9336e (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
28
// PR c++/61214
/* { dg-options "-O2 -fdump-tree-optimized"  } */

struct Base
{
  virtual ~Base();
  virtual Base* clone() {
    return 0;
  }
};

struct Foo : Base
{
  virtual ~Foo();
  virtual Base* clone() {
    return new Foo();
  }
};

int main()
{
  Base* f = new Foo();
  f->clone();
  return 0;
}

/* { dg-final { scan-tree-dump-not "OBJ_TYPE_REF" "optimized"  } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */