150
|
1 // RUN: %clang_cc1 -triple mipsel-linux-gnu -fsyntax-only -verify %s
|
|
2
|
236
|
3 void foo32(void);
|
|
4 void foo16(void);
|
|
5 void __attribute__((nomips16)) foo32(void);
|
|
6 void __attribute__((mips16)) foo16(void);
|
150
|
7
|
236
|
8 void __attribute__((nomips16)) foo32_(void);
|
|
9 void __attribute__((mips16)) foo16_(void);
|
|
10 void foo32_(void);
|
|
11 void foo16_(void);
|
150
|
12
|
236
|
13 void foo32__(void) __attribute__((nomips16));
|
|
14 void foo32__(void) __attribute__((mips16));
|
150
|
15
|
236
|
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}}
|
150
|
18
|
236
|
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}}
|
150
|
21
|
|
22
|
|
23 __attribute((nomips16)) int a; // expected-error {{attribute only applies to functions}}
|
|
24
|
|
25 __attribute((mips16)) int b; // expected-error {{attribute only applies to functions}}
|
|
26
|
|
27
|