devirt3.C: New test.

2013-10-24  Dehao Chen  <dehao@google.com>

	* g++.dg/opt/devirt3.C: New test.

From-SVN: r204022
This commit is contained in:
Dehao Chen 2013-10-24 16:27:57 +00:00 committed by Dehao Chen
parent 8170608bfc
commit a2ad7995d0
2 changed files with 28 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-10-24 Dehao Chen <dehao@google.com>
* g++.dg/opt/devirt3.C: New test.
2013-08-24 Tobias Burnus <burnus@net-b.de>
PR other/33426

View File

@ -0,0 +1,24 @@
// { dg-do compile }
// { dg-options "-O2" }
class ert_RefCounter {
protected:
int refCounterE;
virtual ~ert_RefCounter() {}
};
class ebs_Object : virtual public ert_RefCounter {
};
class dpr_App : public ebs_Object {
public:
virtual void run();
};
class dpr_Job : public ebs_Object {};
void dpr_run(ebs_Object& objectA) {
((dpr_App&)objectA).run();
dpr_Job jobL;
dpr_run(jobL);
}