[llvm] r202218 - Delete two declared overloads of CallInst::CallInst that are never defined or used. No functionality change.
Nick Lewycky
nicholas at mxc.ca
Tue Feb 25 18:39:44 PST 2014
Author: nicholas
Date: Tue Feb 25 20:39:43 2014
New Revision: 202218
URL: http://llvm.org/viewvc/llvm-project?rev=202218&view=rev
Log:
Delete two declared overloads of CallInst::CallInst that are never defined or used. No functionality change.
Modified:
llvm/trunk/include/llvm/IR/Instructions.h
Modified: llvm/trunk/include/llvm/IR/Instructions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Instructions.h?rev=202218&r1=202217&r2=202218&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Instructions.h (original)
+++ llvm/trunk/include/llvm/IR/Instructions.h Tue Feb 25 20:39:43 2014
@@ -1188,10 +1188,6 @@ class CallInst : public Instruction {
inline CallInst(Value *Func, ArrayRef<Value *> Args,
const Twine &NameStr, BasicBlock *InsertAtEnd);
- CallInst(Value *F, Value *Actual, const Twine &NameStr,
- Instruction *InsertBefore);
- CallInst(Value *F, Value *Actual, const Twine &NameStr,
- BasicBlock *InsertAtEnd);
explicit CallInst(Value *F, const Twine &NameStr,
Instruction *InsertBefore);
CallInst(Value *F, const Twine &NameStr, BasicBlock *InsertAtEnd);
More information about the llvm-commits
mailing list