Lines Matching full:fastcall
3 void __attribute__((fastcall)) foo(float *a) {
9 void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{'fastcall' attribute takes no arguments}}
12 void __attribute__((fastcall)) test0() { // expected-error {{function with no prototype cannot use fastcall calling convention}}
15 void __attribute__((fastcall)) test1(void) {
18 void __attribute__((fastcall)) test2(int a, ...) { // expected-error {{variadic function cannot use fastcall calling convention}}
25 void (__attribute__((fastcall)) *pfoo)(float*) = foo;
36 typedef void (__attribute__((fastcall)) *Handler) (float *);