]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Sema/mips16_attr_allowed.c
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
[FreeBSD/FreeBSD.git] / test / Sema / mips16_attr_allowed.c
1 // RUN: %clang_cc1 -triple mipsel-linux-gnu -fsyntax-only -verify %s
2
3 void foo32();
4 void foo16();
5 void __attribute__((nomips16)) foo32();
6 void __attribute__((mips16)) foo16();
7
8 void __attribute__((nomips16)) foo32_();
9 void __attribute__((mips16)) foo16_();
10 void foo32_();
11 void foo16_();
12
13 void foo32__() __attribute__((nomips16));
14 void foo32__() __attribute__((mips16));
15
16 void foo32a() __attribute__((nomips16(0))) ; // expected-error {{'nomips16' attribute takes no arguments}}
17 void __attribute__((mips16(1))) foo16a(); // expected-error {{'mips16' attribute takes no arguments}}
18
19 void __attribute__((nomips16(1, 2))) foo32b(); // expected-error {{'nomips16' attribute takes no arguments}}
20 void __attribute__((mips16(1, 2))) foo16b(); // expected-error {{'mips16' attribute takes no arguments}}
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