[llvm-commits] CVS: llvm/include/llvm/TypeSymbolTable.h ValueSymbolTable.h

Chris Lattner sabre at nondot.org
Tue Feb 6 22:23:05 PST 2007



Changes in directory llvm/include/llvm:

TypeSymbolTable.h updated: 1.7 -> 1.8
ValueSymbolTable.h updated: 1.6 -> 1.7
---
Log message:

shrink vmcore by moving symbol table stripping support out of VMCore into
the one IPO pass that uses it.


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

 TypeSymbolTable.h  |    4 ----
 ValueSymbolTable.h |    6 ------
 2 files changed, 10 deletions(-)


Index: llvm/include/llvm/TypeSymbolTable.h
diff -u llvm/include/llvm/TypeSymbolTable.h:1.7 llvm/include/llvm/TypeSymbolTable.h:1.8
--- llvm/include/llvm/TypeSymbolTable.h:1.7	Tue Feb  6 23:35:58 2007
+++ llvm/include/llvm/TypeSymbolTable.h	Wed Feb  7 00:22:45 2007
@@ -98,10 +98,6 @@
 /// @{
 public:
 
-  /// This method will strip the symbol table of its names 
-  /// @brief Strip the symbol table.
-  bool strip();
-
   /// Inserts a type into the symbol table with the specified name. There can be
   /// a many-to-one mapping between names and types. This method allows a type
   /// with an existing entry in the symbol table to get a new name.


Index: llvm/include/llvm/ValueSymbolTable.h
diff -u llvm/include/llvm/ValueSymbolTable.h:1.6 llvm/include/llvm/ValueSymbolTable.h:1.7
--- llvm/include/llvm/ValueSymbolTable.h:1.6	Wed Feb  7 00:13:49 2007
+++ llvm/include/llvm/ValueSymbolTable.h	Wed Feb  7 00:22:45 2007
@@ -120,12 +120,6 @@
 /// @}
 /// @name Mutators
 /// @{
-public:
-
-  /// This method will strip the symbol table of its names.
-  /// @brief Strip the symbol table.
-  bool strip();
-  
 private:
   /// This method adds the provided value \p N to the symbol table.  The Value
   /// must have a name which is used to place the value in the symbol table. 






More information about the llvm-commits mailing list