X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FVMCore%2FiCall.cpp;h=3a0545f17425f828377a97326ffaa52acb54a87e;hb=a98bde53a7eb13e02c1dc707dae58aa21fd7ea2c;hp=4f1a1c95f4df265dd9f776afcbb678e4b2726adf;hpb=2fbfdcffd3e0cf41422aaa6c526c37cb02b81341;p=oota-llvm.git diff --git a/lib/VMCore/iCall.cpp b/lib/VMCore/iCall.cpp index 4f1a1c95f4d..3a0545f1742 100644 --- a/lib/VMCore/iCall.cpp +++ b/lib/VMCore/iCall.cpp @@ -14,10 +14,10 @@ //===----------------------------------------------------------------------===// CallInst::CallInst(Value *Func, const std::vector ¶ms, - const std::string &Name) + 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(Func, this)); @@ -43,17 +43,17 @@ CallInst::CallInst(const CallInst &CI) // InvokeInst Implementation //===----------------------------------------------------------------------===// -InvokeInst::InvokeInst(Value *Func, BasicBlock *IfNormal, \ +InvokeInst::InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, const std::vector ¶ms, - const std::string &Name) + 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(Func, this)); - Operands.push_back(Use(IfNormal, this)); - Operands.push_back(Use(IfException, this)); + Operands.push_back(Use((Value*)IfNormal, this)); + Operands.push_back(Use((Value*)IfException, this)); const FunctionType *MTy = cast(cast(Func->getType())->getElementType());