diff options
Diffstat (limited to 'clang/test/Sema/decl-microsoft-call-conv.c')
| -rw-r--r-- | clang/test/Sema/decl-microsoft-call-conv.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/clang/test/Sema/decl-microsoft-call-conv.c b/clang/test/Sema/decl-microsoft-call-conv.c index c8fb6e10f9b..cefaf4f40b0 100644 --- a/clang/test/Sema/decl-microsoft-call-conv.c +++ b/clang/test/Sema/decl-microsoft-call-conv.c @@ -14,11 +14,17 @@ void __pascal CrcGenerateTablePascal() {} void __vectorcall CrcGenerateTableVectorcall(void); void __vectorcall CrcGenerateTableVectorcall() {} -void __fastcall CrcGenerateTableNoProtoFastcall() {} // expected-error{{function with no prototype cannot use the fastcall calling convention}} -void __stdcall CrcGenerateTableNoProtoStdcall() {} // expected-warning{{function with no prototype cannot use the stdcall calling convention}} -void __thiscall CrcGenerateTableNoProtoThiscall() {} // expected-error{{function with no prototype cannot use the thiscall calling convention}} -void __pascal CrcGenerateTableNoProtoPascal() {} // expected-error{{function with no prototype cannot use the pascal calling convention}} -void __vectorcall CrcGenerateTableNoProtoVectorcall() {} // expected-error{{function with no prototype cannot use the vectorcall calling convention}} +void __fastcall CrcGenerateTableNoProtoFastcall(); // expected-error{{function with no prototype cannot use the fastcall calling convention}} +void __stdcall CrcGenerateTableNoProtoStdcall(); // expected-warning{{function with no prototype cannot use the stdcall calling convention}} +void __thiscall CrcGenerateTableNoProtoThiscall(); // expected-error{{function with no prototype cannot use the thiscall calling convention}} +void __pascal CrcGenerateTableNoProtoPascal(); // expected-error{{function with no prototype cannot use the pascal calling convention}} +void __vectorcall CrcGenerateTableNoProtoVectorcall(); // expected-error{{function with no prototype cannot use the vectorcall calling convention}} + +void __fastcall CrcGenerateTableNoProtoDefFastcall() {} +void __stdcall CrcGenerateTableNoProtoDefStdcall() {} +void __thiscall CrcGenerateTableNoProtoDefThiscall() {} +void __pascal CrcGenerateTableNoProtoDefPascal() {} +void __vectorcall CrcGenerateTableNoProtoDefVectorcall() {} // Regular calling convention is fine. void CrcGenerateTableNoProto() {} |

