OSDN Git Service

[opaque pointer type] Provide a convenience function for creating direct CallInsts...
authorDavid Blaikie <dblaikie@gmail.com>
Tue, 19 May 2015 21:47:12 +0000 (21:47 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Tue, 19 May 2015 21:47:12 +0000 (21:47 +0000)
Might need a similar convenience in CallInst's ctor too, but we'll
see/will add it when it becomes useful.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237731 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/IRBuilder.h

index 1c2f178..31344c8 100644 (file)
@@ -1472,6 +1472,11 @@ public:
     return Insert(CallInst::Create(FTy, Callee, Args), Name);
   }
 
+  CallInst *CreateCall(Function *Callee, ArrayRef<Value *> Args,
+                       const Twine &Name = "") {
+    return CreateCall(Callee->getFunctionType(), Callee, Args, Name);
+  }
+
   Value *CreateSelect(Value *C, Value *True, Value *False,
                       const Twine &Name = "") {
     if (Constant *CC = dyn_cast<Constant>(C))