[llvm-commits] [llvm] r40879 - /llvm/trunk/include/llvm/Instructions.h
Chris Lattner
sabre at nondot.org
Mon Aug 6 15:01:53 PDT 2007
Author: lattner
Date: Mon Aug 6 17:01:53 2007
New Revision: 40879
URL: http://llvm.org/viewvc/llvm-project?rev=40879&view=rev
Log:
remove #if 0 code.
Modified:
llvm/trunk/include/llvm/Instructions.h
Modified: llvm/trunk/include/llvm/Instructions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Instructions.h?rev=40879&r1=40878&r2=40879&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Instructions.h (original)
+++ llvm/trunk/include/llvm/Instructions.h Mon Aug 6 17:01:53 2007
@@ -805,20 +805,6 @@
typename std::iterator_traits<InputIterator>::iterator_category());
}
-#if 0
- // Leave these here for llvm-gcc
- CallInst(Value *F, Value* const *Args, unsigned NumArgs,
- const std::string &Name = "", Instruction *InsertBefore = 0);
- CallInst(Value *F, Value *const *Args, unsigned NumArgs,
- const std::string &Name, BasicBlock *InsertAtEnd);
-
- // Alternate CallInst ctors w/ two actuals, w/ one actual and no
- // actuals, respectively.
- CallInst(Value *F, Value *Actual1, Value *Actual2,
- const std::string& Name = "", Instruction *InsertBefore = 0);
- CallInst(Value *F, Value *Actual1, Value *Actual2,
- const std::string& Name, BasicBlock *InsertAtEnd);
-#endif
CallInst(Value *F, Value *Actual, const std::string& Name = "",
Instruction *InsertBefore = 0);
CallInst(Value *F, Value *Actual, const std::string& Name,
More information about the llvm-commits
mailing list