summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ipa/pr79931.C
blob: 78f6e03c458781d2a617ebe18d4d75791002ae95 (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
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-ipa-all" } */

class DocumentImpl;
struct NodeImpl
{
  virtual DocumentImpl * getOwnerDocument();
  virtual NodeImpl * getParentNode();
  virtual NodeImpl * removeChild(NodeImpl *oldChild);
};
struct AttrImpl : NodeImpl
{
  NodeImpl *insertBefore(NodeImpl *newChild, NodeImpl *refChild);
};
struct DocumentImpl : NodeImpl
{
  virtual NodeImpl *removeChild(NodeImpl *oldChild);
  virtual int* getRanges();
};
NodeImpl *AttrImpl::insertBefore(NodeImpl *newChild, NodeImpl *refChild) {
  NodeImpl *oldparent = newChild->getParentNode();
  oldparent->removeChild(newChild);
  this->getOwnerDocument()->getRanges();
}