[llvm-commits] CVS: llvm/include/llvm/SymbolTable.h
LLVM
llvm at cs.uiuc.edu
Sat Jul 17 16:30:55 PDT 2004
Changes in directory llvm/include/llvm:
SymbolTable.h updated: 1.36 -> 1.37
---
Log message:
Fix a comment.
---
Diffs of the changes: (+2 -3)
Index: llvm/include/llvm/SymbolTable.h
diff -u llvm/include/llvm/SymbolTable.h:1.36 llvm/include/llvm/SymbolTable.h:1.37
--- llvm/include/llvm/SymbolTable.h:1.36 Sun Jul 4 05:49:41 2004
+++ llvm/include/llvm/SymbolTable.h Sat Jul 17 18:30:45 2004
@@ -159,9 +159,8 @@
insertEntry(Val->getName(), Val->getType(), Val);
}
- /// Inserts a constant or type into the symbol table with the specified
- /// name. There can be a many to one mapping between names and constants
- /// or types.
+ /// Inserts a constant into the symbol table with the specified
+ /// name. There can be a many to one mapping between names and constants.
/// @brief Insert a constant or type.
inline void insert(const std::string &Name, Value *Val) {
assert(Val && "Can't insert null type into symbol table!");
More information about the llvm-commits
mailing list