diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-03-08 19:02:17 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-03-08 19:02:17 +0000 |
commit | d694a789cb3dd2944280c9601f912db92c855472 (patch) | |
tree | 07700d5e53d50720683e713ba35e00a1b8ebfea5 | |
parent | 087fcf3e89c2728b5fc850c587da4876319877ca (diff) |
Keep calling-convention and tail-call bit when creating new invoke or call.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66384 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/IPO/PartialSpecialization.cpp | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/lib/Transforms/IPO/PartialSpecialization.cpp b/lib/Transforms/IPO/PartialSpecialization.cpp index a2a1a62655..0e1fdb9915 100644 --- a/lib/Transforms/IPO/PartialSpecialization.cpp +++ b/lib/Transforms/IPO/PartialSpecialization.cpp @@ -65,7 +65,7 @@ SpecializeFunction(Function* F, DenseSet<unsigned> deleted; for (DenseMap<const Value*, Value*>::iterator repb = replacements.begin(), repe = replacements.end(); - repb != repe; ++ repb) + repb != repe; ++repb) deleted.insert(cast<Argument>(repb->first)->getArgNo()); Function* NF = CloneFunction(F, replacements); @@ -74,7 +74,7 @@ SpecializeFunction(Function* F, for (Value::use_iterator ii = F->use_begin(), ee = F->use_end(); ii != ee; ) { - Value::use_iterator i = ii;; + Value::use_iterator i = ii; ++ii; if (isa<CallInst>(i) || isa<InvokeInst>(i)) { CallSite CS(cast<Instruction>(i)); @@ -85,16 +85,19 @@ SpecializeFunction(Function* F, if (!deleted.count(x)) args.push_back(CS.getArgument(x)); Value* NCall; - if (isa<CallInst>(i)) + if (CallInst *CI = dyn_cast<CallInst>(i)) { NCall = CallInst::Create(NF, args.begin(), args.end(), - CS.getInstruction()->getName(), - CS.getInstruction()); - else - NCall = InvokeInst::Create(NF, cast<InvokeInst>(i)->getNormalDest(), - cast<InvokeInst>(i)->getUnwindDest(), + CI->getName(), CI); + cast<CallInst>(NCall)->setTailCall(CI->isTailCall()); + cast<CallInst>(NCall)->setCallingConv(CI->getCallingConv()); + } else { + InvokeInst *II = cast<InvokeInst>(i); + NCall = InvokeInst::Create(NF, II->getNormalDest(), + II->getUnwindDest(), args.begin(), args.end(), - CS.getInstruction()->getName(), - CS.getInstruction()); + II->getName(), II); + cast<InvokeInst>(NCall)->setCallingConv(II->getCallingConv()); + } CS.getInstruction()->replaceAllUsesWith(NCall); CS.getInstruction()->eraseFromParent(); } |