Lines Matching refs:__attribute__

4 struct a test __attribute__((interrupt)); // expected-warning {{'interrupt' attribute only applies …
6 __attribute__((interrupt("EIC"))) void foo1() {} // expected-warning {{'interrupt' attribute argume… in foo1()
8 __attribute__((interrupt("eic", 1))) void foo2() {} // expected-error {{'interrupt' attribute takes… in foo2()
10 __attribute__((interrupt("eic"))) void foo3() {} in foo3()
11 __attribute__((interrupt("vector=sw0"))) void foo4() {} in foo4()
12 __attribute__((interrupt("vector=hw0"))) void foo5() {} in foo5()
13 __attribute__((interrupt("vector=hw1"))) void foo6() {} in foo6()
14 __attribute__((interrupt("vector=hw2"))) void foo7() {} in foo7()
15 __attribute__((interrupt("vector=hw3"))) void foo8() {} in foo8()
16 __attribute__((interrupt("vector=hw4"))) void foo9() {} in foo9()
17 __attribute__((interrupt("vector=hw5"))) void fooa() {} in fooa()
18 __attribute__((interrupt(""))) void food() {} in food()
20 __attribute__((interrupt)) int foob() {return 0;} // expected-warning {{MIPS 'interrupt' attribute … in foob()
21 __attribute__((interrupt())) void fooc(int a) {} // expected-warning {{MIPS 'interrupt' attribute o… in fooc()
22 __attribute__((interrupt,mips16)) void fooe() {} // expected-error {{'interrupt' and 'mips16' attri… in fooe()
24 __attribute__((mips16,interrupt)) void foof() {} // expected-error {{'mips16' and 'interrupt' attri… in foof()
26 __attribute__((interrupt)) __attribute__ ((mips16)) void foo10() {} // expected-error {{'interrupt'… in foo10()
28 __attribute__((mips16)) __attribute ((interrupt)) void foo11() {} // expected-error {{'mips16' and … in foo11()