[llvm] r244408 - [IR] Remove unused declaration
    David Majnemer via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Sat Aug  8 17:32:19 PDT 2015
    
    
  
Author: majnemer
Date: Sat Aug  8 19:32:18 2015
New Revision: 244408
URL: http://llvm.org/viewvc/llvm-project?rev=244408&view=rev
Log:
[IR] Remove unused declaration
CatchReturnInst::init is never referenced, remove it.
No functionality change is intended.
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=244408&r1=244407&r2=244408&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Instructions.h (original)
+++ llvm/trunk/include/llvm/IR/Instructions.h Sat Aug  8 19:32:18 2015
@@ -4037,7 +4037,6 @@ class CatchReturnInst : public Terminato
   CatchReturnInst(const CatchReturnInst &RI);
 
 private:
-  void init(Value *RetVal, BasicBlock *UnwindBB);
   CatchReturnInst(BasicBlock *BB, Instruction *InsertBefore = nullptr);
   CatchReturnInst(BasicBlock *BB, BasicBlock *InsertAtEnd);
 
    
    
More information about the llvm-commits
mailing list