URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [ext/] [attrib42.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile { target { i?86-*-* && ilp32 } } }
struct A {
__attribute__((fastcall))
void f();
};
int main()
{
typedef void (A::*FP)();
FP fp[] = {&A::f}; // { dg-error "cannot convert" }
}
Go to most recent revision | Compare with Previous | Blame | View Log