[gn build] Port fef54d0393fd
[llvm-project.git] / clang / test / Sema / mips16_attr_allowed.c
blob46c9753e43a00e2277d6a71eb37aee806cb1b13e
1 // RUN: %clang_cc1 -triple mipsel-linux-gnu -fsyntax-only -verify %s
3 void foo32(void);
4 void foo16(void);
5 void __attribute__((nomips16)) foo32(void);
6 void __attribute__((mips16)) foo16(void);
8 void __attribute__((nomips16)) foo32_(void);
9 void __attribute__((mips16)) foo16_(void);
10 void foo32_(void);
11 void foo16_(void);
13 void foo32__(void) __attribute__((nomips16));
14 void foo32__(void) __attribute__((mips16));
16 void foo32a(void) __attribute__((nomips16(0))) ; // expected-error {{'nomips16' attribute takes no arguments}}
17 void __attribute__((mips16(1))) foo16a(void); // expected-error {{'mips16' attribute takes no arguments}}
19 void __attribute__((nomips16(1, 2))) foo32b(void); // expected-error {{'nomips16' attribute takes no arguments}}
20 void __attribute__((mips16(1, 2))) foo16b(void); // expected-error {{'mips16' attribute takes no arguments}}
23 __attribute((nomips16)) int a; // expected-error {{attribute only applies to functions}}
25 __attribute((mips16)) int b; // expected-error {{attribute only applies to functions}}