From: Chris Lattner Date: Mon, 6 Aug 2007 22:01:53 +0000 (+0000) Subject: remove #if 0 code. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=731a5f1f94f96704ee6e0fb602d6ac7765fe5aef;p=oota-llvm.git remove #if 0 code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40879 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 660776a846e..e4f7504d1b5 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -805,20 +805,6 @@ public: typename std::iterator_traits::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,