From: Nick Lewycky Date: Fri, 12 Jun 2009 16:04:00 +0000 (+0000) Subject: Don't forget to match the calling convention when producing a thunk. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b3c36c9c9aba3fce8ae35b52eda4192531a9d3df;p=oota-llvm.git Don't forget to match the calling convention when producing a thunk. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73231 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/MergeFunctions.cpp b/lib/Transforms/IPO/MergeFunctions.cpp index e237fcde026..a1d91c256e5 100644 --- a/lib/Transforms/IPO/MergeFunctions.cpp +++ b/lib/Transforms/IPO/MergeFunctions.cpp @@ -478,6 +478,7 @@ static void ThunkGToF(Function *F, Function *G) { CallInst *CI = CallInst::Create(F, Args.begin(), Args.end(), "", BB); CI->setTailCall(); + CI->setCallingConv(F->getCallingConv()); if (NewG->getReturnType() == Type::VoidTy) { ReturnInst::Create(BB); } else if (CI->getType() != NewG->getReturnType()) { @@ -492,8 +493,7 @@ static void ThunkGToF(Function *F, Function *G) { G->replaceAllUsesWith(NewG); G->eraseFromParent(); - // TODO: look at direct callers to G and make them all direct callers to F - // iff G->hasAddressTaken() is false. + // TODO: look at direct callers to G and make them all direct callers to F. } static void AliasGToF(Function *F, Function *G) {