diff options
Diffstat (limited to 'lib/IR/ValueSymbolTable.cpp')
| -rw-r--r-- | lib/IR/ValueSymbolTable.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/IR/ValueSymbolTable.cpp b/lib/IR/ValueSymbolTable.cpp index 0a7f2803cd4c..f4bea5604043 100644 --- a/lib/IR/ValueSymbolTable.cpp +++ b/lib/IR/ValueSymbolTable.cpp @@ -79,7 +79,7 @@ void ValueSymbolTable::reinsertValue(Value* V) {      // *V << "\n");      return;    } -   +    // Otherwise, there is a naming conflict.  Rename this value.    SmallString<256> UniqueName(V->getName().begin(), V->getName().end()); @@ -107,7 +107,7 @@ ValueName *ValueSymbolTable::createValueName(StringRef Name, Value *V) {      //           << *V << "\n");      return &*IterBool.first;    } -   +    // Otherwise, there is a naming conflict.  Rename this value.    SmallString<256> UniqueName(Name.begin(), Name.end());    return makeUniqueName(V, UniqueName); | 
