URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [inherit/] [override-attribs.C] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/14688
// { dg-do compile { target i?86-*-* x86_64-*-* } }
// { dg-require-effective-target ilp32 }
class one
{
public:
virtual void
test(void* value); // { dg-error "overriding" }
};
class two : public one
{
public:
void __attribute__((regparm(2)))
test(void* value); // { dg-error "conflicting type attributes" }
};
class three : public one
{
public:
void __attribute__ ((cdecl))
test(void* value); // OK
};
Go to most recent revision | Compare with Previous | Blame | View Log