New test.

From-SVN: r73581
This commit is contained in:
Richard Henderson 2003-11-13 23:46:10 -08:00
parent aede75ed61
commit 98f685a20d

View File

@ -0,0 +1,30 @@
// PR c++/12751
// tree-ssa eh lowering bug ran a destructor twice for one object
// { dg-do run }
static int check;
struct Y {
Y();
~Y();
};
void foo() {
Y y1;
Y y2;
switch(0) {
case 1: {
Y y3;
return;
}
}
}
Y::Y() { ++check; }
Y::~Y() { --check; }
int main()
{
foo ();
return check;
}