diff options
-rw-r--r-- | clang/lib/Basic/Targets.cpp | 13 | ||||
-rw-r--r-- | clang/test/Parser/arm-windows-calling-convention-handling.c | 5 | ||||
-rw-r--r-- | clang/test/Parser/x64-windows-calling-convention-handling.c | 9 |
3 files changed, 24 insertions, 3 deletions
diff --git a/clang/lib/Basic/Targets.cpp b/clang/lib/Basic/Targets.cpp index f942eebdea9..8d1966e8f3d 100644 --- a/clang/lib/Basic/Targets.cpp +++ b/clang/lib/Basic/Targets.cpp @@ -4959,6 +4959,19 @@ public: BuiltinVaListKind getBuiltinVaListKind() const override { return TargetInfo::CharPtrBuiltinVaList; } + CallingConvCheckResult checkCallingConvention(CallingConv CC) const override { + switch (CC) { + case CC_X86StdCall: + case CC_X86ThisCall: + case CC_X86FastCall: + case CC_X86VectorCall: + return CCCR_Ignore; + case CC_C: + return CCCR_OK; + default: + return CCCR_Warning; + } + } }; // Windows ARM + Itanium C++ ABI Target diff --git a/clang/test/Parser/arm-windows-calling-convention-handling.c b/clang/test/Parser/arm-windows-calling-convention-handling.c index 7717aada53a..ee25e601931 100644 --- a/clang/test/Parser/arm-windows-calling-convention-handling.c +++ b/clang/test/Parser/arm-windows-calling-convention-handling.c @@ -1,10 +1,9 @@ // RUN: %clang_cc1 -triple thumbv7-windows -fms-compatibility -fsyntax-only -verify %s -int __cdecl cdecl(int a, int b, int c, int d) { // expected-warning {{calling convention '__cdecl' ignored for this target}} +int __cdecl cdecl(int a, int b, int c, int d) { // expected-no-diagnostics return a + b + c + d; } -float __stdcall stdcall(float a, float b, float c, float d) { // expected-warning {{calling convention '__stdcall' ignored for this target}} +float __stdcall stdcall(float a, float b, float c, float d) { // expected-no-diagnostics return a + b + c + d; } - diff --git a/clang/test/Parser/x64-windows-calling-convention-handling.c b/clang/test/Parser/x64-windows-calling-convention-handling.c new file mode 100644 index 00000000000..c0276634148 --- /dev/null +++ b/clang/test/Parser/x64-windows-calling-convention-handling.c @@ -0,0 +1,9 @@ +// RUN: %clang_cc1 -triple x86_64-windows -fms-compatibility -fsyntax-only -verify %s + +int __cdecl cdecl(int a, int b, int c, int d) { // expected-no-diagnostics + return a + b + c + d; +} + +float __stdcall stdcall(float a, float b, float c, float d) { // expected-no-diagnostics + return a + b + c + d; +} |