X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FVMCore%2FiCall.cpp;h=9e5ca0178752445dec89f23b6b9b2ba1de6616e8;hb=1a143aef993a95e1caef2c8196d0b2f3f5f52c63;hp=4f1a1c95f4df265dd9f776afcbb678e4b2726adf;hpb=2fbfdcffd3e0cf41422aaa6c526c37cb02b81341;p=oota-llvm.git diff --git a/lib/VMCore/iCall.cpp b/lib/VMCore/iCall.cpp index 4f1a1c95f4d..9e5ca017875 100644 --- a/lib/VMCore/iCall.cpp +++ b/lib/VMCore/iCall.cpp @@ -43,7 +43,7 @@ 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) @@ -52,8 +52,8 @@ InvokeInst::InvokeInst(Value *Func, BasicBlock *IfNormal, \ Instruction::Invoke, Name) { 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());