aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/mips/mips16-attributes-2.c
blob: bc81cfa7e03727602c908f55d8bbab57817befbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { 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" } */