mips.h (SYMBOL_FLAG_MIPS16_FUNC): Delete.
[official-gcc.git] / gcc / testsuite / gcc.target / mips / mips16-attributes-2.c
blobeeadf8129b8b5d03482a1b90f03ab95b978033bb
1 /* { dg-skip-if "" { *-*-* } { "-mflip-mips16" } { "" } } */
3 void f1 (void);
4 void __attribute__((mips16)) f1 (void) {} /* { dg-error "conflicting" } */
6 void __attribute__((mips16)) f2 (void);
7 void f2 (void) {} /* { dg-error "conflicting" } */
9 void f3 (void);
10 void __attribute__((nomips16)) f3 (void) {} /* { dg-error "conflicting" } */
12 void __attribute__((nomips16)) f4 (void);
13 void f4 (void) {} /* { dg-error "conflicting" } */
15 void __attribute__((mips16, nomips16)) f5 (void) {} /* { dg-error "cannot have both" } */