URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [eh/] [omit-frame-pointer.C] - Rev 694
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }
// { dg-options -fomit-frame-pointer }
#include <iostream>
class Bug
{
};
int throw_bug()
{
throw Bug();
return 0;
}
int main()
{
try {
std::cout << throw_bug();
} catch (Bug bug) {
};
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log