diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-07-17 23:30:45 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-07-17 23:30:45 +0000 |
commit | 3e7bb400bf7632f5000be98f83522b28c2eb8de2 (patch) | |
tree | 051445c1b7896e0029b1b714940c818f6c9d89ca /include | |
parent | c6c981d643b3b1e78f1a21b956b3d0fd47d1e13d (diff) | |
download | external_llvm-3e7bb400bf7632f5000be98f83522b28c2eb8de2.zip external_llvm-3e7bb400bf7632f5000be98f83522b28c2eb8de2.tar.gz external_llvm-3e7bb400bf7632f5000be98f83522b28c2eb8de2.tar.bz2 |
Fix a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14923 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/SymbolTable.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/SymbolTable.h b/include/llvm/SymbolTable.h index 34d4c11..032e4a1 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!"); |