From: Reid Spencer Date: Sat, 17 Jul 2004 23:30:45 +0000 (+0000) Subject: Fix a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3e7bb400bf7632f5000be98f83522b28c2eb8de2;p=oota-llvm.git Fix a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14923 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/SymbolTable.h b/include/llvm/SymbolTable.h index 34d4c112351..032e4a10268 100644 --- a/include/llvm/SymbolTable.h +++ b/include/llvm/SymbolTable.h @@ -159,9 +159,8 @@ public: 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!");