[llvm-commits] CVS: llvm/include/llvm/SymbolTable.h

Chris Lattner lattner at cs.uiuc.edu
Sat Mar 5 22:00:38 PST 2005



Changes in directory llvm/include/llvm:

SymbolTable.h updated: 1.47 -> 1.48
---
Log message:

this method is never called.


---
Diffs of the changes:  (+0 -11)

 SymbolTable.h |   11 -----------
 1 files changed, 11 deletions(-)


Index: llvm/include/llvm/SymbolTable.h
diff -u llvm/include/llvm/SymbolTable.h:1.47 llvm/include/llvm/SymbolTable.h:1.48
--- llvm/include/llvm/SymbolTable.h:1.47	Sat Mar  5 23:56:02 2005
+++ llvm/include/llvm/SymbolTable.h	Sun Mar  6 00:00:24 2005
@@ -255,17 +255,6 @@
     return pmap.find(Typ); 
   }
 
-  /// This method returns a ValueMap* for a specific type plane. This
-  /// interface is deprecated and may go away in the future.
-  /// @deprecated
-  /// @brief Find a type plane
-  inline const ValueMap* findPlane(const Type* Typ) const {
-    assert(Typ && "Can't find type plane with null type!");
-    plane_const_iterator I = pmap.find(Typ);
-    if (I == pmap.end()) return 0;
-    return &I->second;
-  }
-
 /// @}
 /// @name Internal Methods
 /// @{






More information about the llvm-commits mailing list