URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [pr51117.C] - Rev 693
Compare with Previous | Blame | View Log
// PR tree-optimization/51117
// { dg-do compile }
// { dg-options "-O2 -fexceptions" }
struct A { char buf[64]; };
void bar (A *);
int
foo ()
{
A c;
bar (&c);
try
{
{
A a;
bar (&a);
if (a.buf[13])
throw 1;
else if (a.buf[52])
throw 3;
}
{
A b;
bar (&b);
if (b.buf[13])
throw 2;
}
}
catch ( ...)
{
return 1;
}
return 0;
}
// { dg-final { scan-assembler-not "__cxa_rethrow" } }