OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.mike/] [p5571.C] - Rev 338

Compare with Previous | Blame | View Log

// { dg-do run  }
// prms-id: 5571

int e = 0;
void *vp = 0;

class ParentOne {
public:
  ParentOne() {}
#ifdef MAKE_WORK
  virtual ~ParentOne() {}
#endif
private:
  char SomeData[101];
};

class ParentTwo {
public:
  ParentTwo() {}
  virtual ~ParentTwo() {}
private:
  int MoreData[12];
  virtual int foo() { return 0; }
};

struct Child : public ParentOne, public ParentTwo {
    int ChildsToy;
    virtual void PrintThis() = 0;
};

struct Student : public Child {
  int StudentsBook;
  void PrintThis() {
    if (vp == 0)
      vp = (void *)this;
    else
      {
        if (vp != (void *)this)
          ++e;
      }
  }
  void LocalPrintThis() {
    if (vp == 0)
      vp = (void *)this;
    else
      {
        if (vp != (void *)this)
          ++e;
      }
    PrintThis();
  }
  void ForcedPrintThis() {
    if (vp == 0)
      vp = (void *)this;
    else
      {
        if (vp != (void *)this)
          ++e;
      }
    Student::PrintThis();
  }
};

int main() {
  Student  o;
  o.LocalPrintThis();
  o.ForcedPrintThis();
  Child* pX = &o;
  pX->PrintThis();
  return e;
}

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.