URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [mips/] [mips16-attributes-2.c] - Rev 697
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-skip-if "" { *-*-* } { "-mflip-mips16" } { "" } } */ /* { dg-options "(-mips16)" } */ void f1 (void); void __attribute__((mips16)) f1 (void) {} /* { dg-error "conflicting" } */ void __attribute__((mips16)) f2 (void); void f2 (void) {} /* { dg-error "conflicting" } */ void f3 (void); void __attribute__((nomips16)) f3 (void) {} /* { dg-error "conflicting" } */ void __attribute__((nomips16)) f4 (void); void f4 (void) {} /* { dg-error "conflicting" } */ void __attribute__((mips16, nomips16)) f5 (void) {} /* { dg-error "cannot have both" } */
Go to most recent revision | Compare with Previous | Blame | View Log