URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [eh/] [dead1.C] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
// PR 6320
// Rechained the MUST_NOT_THROW region in the wrong order wrt the
// TRY/CATCH while removing them and got confused.
// { dg-do compile }
struct S {
~S();
};
void foo()
{
try {
return;
}
catch (int) {
}
catch (...) {
S s;
}
}
Go to most recent revision | Compare with Previous | Blame | View Log