Add a couple of extra casts to avoid having to add #include
authorChris Lattner <sabre@nondot.org>
Tue, 9 Apr 2002 18:36:52 +0000 (18:36 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 9 Apr 2002 18:36:52 +0000 (18:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2205 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/iCall.cpp

index 4f1a1c95f4df265dd9f776afcbb678e4b2726adf..9e5ca0178752445dec89f23b6b9b2ba1de6616e8 100644 (file)
@@ -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<Value*> &params,
                       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<FunctionType>(cast<PointerType>(Func->getType())->getElementType());