[PATCH] [ms-cxxabi] Use x86_cdeclmethodcc for __cdecl methods on win32
Reid Kleckner
rnk at google.com
Fri Jan 31 14:59:51 PST 2014
Thanks!
================
Comment at: lib/CodeGen/CodeGenABITypes.cpp:67-68
@@ -66,3 +66,4 @@
RequiredArgs args) {
- return CGM->getTypes().arrangeLLVMFunctionInfo(returnType, argTypes,
- info, args);
+ // We assume callers don't use this to get the LLVM types for C++ methods.
+ bool IsInstanceMethod = false;
+ return CGM->getTypes().arrangeLLVMFunctionInfo(returnType, IsInstanceMethod,
----------------
Richard Smith wrote:
> You don't need this comment any more, I don't think.
Sure
http://llvm-reviews.chandlerc.com/D2664
BRANCH
x86_cdecl_method_cc
ARCANIST PROJECT
clang
More information about the cfe-commits
mailing list