mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
rename insertEntry to insert
llvm-svn: 20484
This commit is contained in:
parent
b1ac7bc7f3
commit
46653269f4
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user