URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [eh/] [pr38662.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile { target { { i?86-*-* x86_64-*-* } && ia32 } } }
class E { };
class T {
int foo(bool a) throw (E) __attribute__((regparm(1)));
int bar(bool b) __attribute__((regparm(1)));
};
int T::bar(bool b)
{
return (b ? 1 : 2);
}
Go to most recent revision | Compare with Previous | Blame | View Log