We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6305ac5 commit 3fda27dCopy full SHA for 3fda27d
clang/lib/Basic/Targets/X86.h
@@ -396,20 +396,9 @@ class LLVM_LIBRARY_VISIBILITY X86TargetInfo : public TargetInfo {
396
CallingConvCheckResult checkCallingConvention(CallingConv CC) const override {
397
// Most of the non-ARM calling conventions are i386 conventions.
398
switch (CC) {
399
- case CC_X86ThisCall:
400
- case CC_X86FastCall:
401
- case CC_X86StdCall:
402
- case CC_X86VectorCall:
403
- case CC_X86RegCall:
404
case CC_C:
405
- case CC_PreserveMost:
406
- case CC_Swift:
407
- case CC_X86Pascal:
408
- case CC_IntelOclBicc:
409
- case CC_OpenCLKernel:
+ case CC_Win64:
410
return CCCR_OK;
411
- case CC_SwiftAsync:
412
- return CCCR_Error;
413
default:
414
return CCCR_Warning;
415
}
0 commit comments