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/] [cleanup4.C] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
// PR 16254
// { dg-do compile }
// We lost a CLEANUP_POINT_EXPR, leading to a crash destroying temp of A.
struct A
{
~A ();
A (int);
};
int bar (const A &);
void
foo (int i)
{
int format[1] = { bar (A (i)) };
}
Go to most recent revision | Compare with Previous | Blame | View Log