[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Sema / mips-interrupt-attr.c
blob733f899ecf239ea1aa4b0a4485f55a84339be049
1 // RUN: %clang_cc1 %s -triple mips-img-elf -verify -fsyntax-only
2 struct a { int b; };
4 struct a test __attribute__((interrupt)); // expected-warning {{'interrupt' attribute only applies to functions and methods}}
6 __attribute((interrupt(42))) void foo0(void) {} // expected-error {{expected string literal as argument of 'interrupt' attribute}}
7 __attribute__((interrupt("EIC"))) void foo1(void) {} // expected-warning {{'interrupt' attribute argument not supported: 'EIC'}}
9 __attribute__((interrupt("eic", 1))) void foo2(void) {} // expected-error {{'interrupt' attribute takes no more than 1 argument}}
11 __attribute__((interrupt("eic"))) void foo3(void) {}
12 __attribute__((interrupt("vector=sw0"))) void foo4(void) {}
13 __attribute__((interrupt("vector=hw0"))) void foo5(void) {}
14 __attribute__((interrupt("vector=hw1"))) void foo6(void) {}
15 __attribute__((interrupt("vector=hw2"))) void foo7(void) {}
16 __attribute__((interrupt("vector=hw3"))) void foo8(void) {}
17 __attribute__((interrupt("vector=hw4"))) void foo9(void) {}
18 __attribute__((interrupt("vector=hw5"))) void fooa(void) {}
19 __attribute__((interrupt(""))) void food(void) {}
21 __attribute__((interrupt)) int foob(void) {return 0;} // expected-warning {{MIPS 'interrupt' attribute only applies to functions that have a 'void' return type}}
22 __attribute__((interrupt())) void fooc(int a) {} // expected-warning {{MIPS 'interrupt' attribute only applies to functions that have no parameters}}
23 __attribute__((interrupt,mips16)) void fooe(void) {} // expected-error {{'mips16' and 'interrupt' attributes are not compatible}} \
24 // expected-note {{conflicting attribute is here}}
25 __attribute__((mips16,interrupt)) void foof(void) {} // expected-error {{'interrupt' and 'mips16' attributes are not compatible}} \
26 // expected-note {{conflicting attribute is here}}
27 __attribute__((interrupt)) __attribute__ ((mips16)) void foo10(void) {} // expected-error {{'mips16' and 'interrupt' attributes are not compatible}} \
28 // expected-note {{conflicting attribute is here}}
29 __attribute__((mips16)) __attribute ((interrupt)) void foo11(void) {} // expected-error {{'interrupt' and 'mips16' attributes are not compatible}} \
30 // expected-note {{conflicting attribute is here}}