HomeSort by relevance Sort by last modified time
    Searched refs:SWIFTCALL (Results 1 - 4 of 4) sorted by null

  /external/clang/test/SemaCXX/
attr-swiftcall.cpp 3 #define SWIFTCALL __attribute__((swiftcall))
8 int notAFunction SWIFTCALL; // expected-warning {{'swiftcall' only applies to function types; type here is 'int'}}
9 void variadic(int x, ...) SWIFTCALL; // expected-error {{variadic function cannot use swiftcall calling convention}}
10 void multiple_ccs(int x) SWIFTCALL __attribute__((vectorcall)); // expected-error {{vectorcall and swiftcall attributes are not compatible}}
11 void (*functionPointer)(void) SWIFTCALL;
13 void indirect_result_nonswift(INDIRECT_RESULT void *out); // expected-error {{'swift_indirect_result' parameter can only be used with swiftcall calling convention}
    [all...]
  /external/clang/test/Sema/
attr-swiftcall.c 3 #define SWIFTCALL __attribute__((swiftcall))
8 int notAFunction SWIFTCALL; // expected-warning {{'swiftcall' only applies to function types; type here is 'int'}}
9 void variadic(int x, ...) SWIFTCALL; // expected-error {{variadic function cannot use swiftcall calling convention}}
10 void unprototyped() SWIFTCALL; // expected-error {{function with no prototype cannot use the swiftcall calling convention}}
11 void multiple_ccs(int x) SWIFTCALL __attribute__((vectorcall)); // expected-error {{vectorcall and swiftcall attributes are not compatible}
    [all...]
  /external/clang/test/CodeGenCXX/
arm-swiftcall.cpp 6 #define SWIFTCALL __attribute__((swiftcall))
16 extern "C" SWIFTCALL TYPE return_##TYPE(void) { \
20 extern "C" SWIFTCALL void take_##TYPE(TYPE v) { \
  /external/clang/test/CodeGen/
arm-swiftcall.c 6 #define SWIFTCALL __attribute__((swiftcall))
15 SWIFTCALL void indirect_result_1(OUT int *arg0, OUT float *arg1) {}
19 SWIFTCALL int indirect_result_2(OUT int *arg0, OUT float *arg1) { __builtin_unreachable(); }
23 SWIFTCALL struct_reallybig indirect_result_3(OUT int *arg0, OUT float *arg1) { __builtin_unreachable(); }
26 SWIFTCALL void context_1(CONTEXT void *self) {}
29 SWIFTCALL void context_2(void *arg0, CONTEXT void *self) {}
32 SWIFTCALL void context_error_1(CONTEXT int *self, ERROR float **error) {}
54 SWIFTCALL void context_error_2(short s, CONTEXT int *self, ERROR float **error) {}
71 SWIFTCALL TYPE return_##TYPE(void) {
    [all...]

Completed in 253 milliseconds