update comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33992 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-02-07 06:25:36 +00:00
parent e6a7a8585e
commit b4d8d62345

View File

@ -78,12 +78,12 @@ void ValueSymbolTable::insert(Value* V) {
// Trim any suffix off.
UniqueName.resize(BaseSize);
UniqueName += utostr(++LastUnique);
// Try insert the vmap entry with this suffix.
} while (!vmap.insert(make_pair(UniqueName, V)).second);
DEBUG(DOUT << " Inserting value: " << UniqueName << ": " << *V << "\n");
// Insert the vmap entry
V->Name = UniqueName;
DEBUG(DOUT << " Inserted value: " << UniqueName << ": " << *V << "\n");
}
// Remove a value