X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FVMCore%2FiCall.cpp;h=3a0545f17425f828377a97326ffaa52acb54a87e;hb=a98bde53a7eb13e02c1dc707dae58aa21fd7ea2c;hp=d757ea2349a2a9c24f8aac0428d4f207f4bef4fe;hpb=2aac6bf66a4f4486e14ee5bdc96277ec770afdc7;p=oota-llvm.git diff --git a/lib/VMCore/iCall.cpp b/lib/VMCore/iCall.cpp index d757ea2349a..3a0545f1742 100644 --- a/lib/VMCore/iCall.cpp +++ b/lib/VMCore/iCall.cpp @@ -7,22 +7,22 @@ #include "llvm/iOther.h" #include "llvm/iTerminators.h" #include "llvm/DerivedTypes.h" -#include "llvm/Method.h" +#include "llvm/Function.h" //===----------------------------------------------------------------------===// // CallInst Implementation //===----------------------------------------------------------------------===// -CallInst::CallInst(Value *Meth, const std::vector ¶ms, - const std::string &Name) - : Instruction(cast(cast(Meth->getType()) +CallInst::CallInst(Value *Func, const std::vector ¶ms, + const std::string &Name, Instruction *InsertBefore) + : Instruction(cast(cast(Func->getType()) ->getElementType())->getReturnType(), - Instruction::Call, Name) { + Instruction::Call, Name, InsertBefore) { Operands.reserve(1+params.size()); - Operands.push_back(Use(Meth, this)); + Operands.push_back(Use(Func, this)); const FunctionType *MTy = - cast(cast(Meth->getType())->getElementType()); + cast(cast(Func->getType())->getElementType()); const FunctionType::ParamTypes &PL = MTy->getParamTypes(); assert((params.size() == PL.size()) || @@ -43,19 +43,19 @@ CallInst::CallInst(const CallInst &CI) // InvokeInst Implementation //===----------------------------------------------------------------------===// -InvokeInst::InvokeInst(Value *Meth, BasicBlock *IfNormal, \ +InvokeInst::InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, const std::vector ¶ms, - const std::string &Name) - : TerminatorInst(cast(cast(Meth->getType()) + const std::string &Name, Instruction *InsertBefore) + : TerminatorInst(cast(cast(Func->getType()) ->getElementType())->getReturnType(), - Instruction::Invoke, Name) { + Instruction::Invoke, Name, InsertBefore) { Operands.reserve(3+params.size()); - Operands.push_back(Use(Meth, this)); - Operands.push_back(Use(IfNormal, this)); - Operands.push_back(Use(IfException, this)); + Operands.push_back(Use(Func, this)); + Operands.push_back(Use((Value*)IfNormal, this)); + Operands.push_back(Use((Value*)IfException, this)); const FunctionType *MTy = - cast(cast(Meth->getType())->getElementType()); + cast(cast(Func->getType())->getElementType()); const FunctionType::ParamTypes &PL = MTy->getParamTypes(); assert((params.size() == PL.size()) ||