rename insertEntry to insert

llvm-svn: 20484
This commit is contained in:
Chris Lattner 2005-03-06 05:55:40 +00:00
parent 533805e6da
commit 86fe3a1fdb
1 changed files with 2 additions and 1 deletions

View File

@ -233,7 +233,8 @@ void SymbolTable::insertEntry(const std::string &Name, const Type *VTy,
// insertEntry - Insert a value into the symbol table with the specified
// name...
//
void SymbolTable::insertEntry(const std::string& Name, const Type* T) {
void SymbolTable::insert(const std::string& Name, const Type* T) {
assert(T && "Can't insert null type into symbol table!");
// Check to see if there is a naming conflict. If so, rename this type!
std::string UniqueName = Name;