I swear I compiled this, really I did.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15467 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-08-04 07:28:06 +00:00
parent c003628a61
commit 7b0c84dcf5
2 changed files with 2 additions and 2 deletions

View File

@ -420,7 +420,7 @@ static void ForceRenaming(GlobalValue *GV, const std::string &Name) {
ConflictGV->setName(""); // Eliminate the conflict
GV->setName(Name); // Force the name back
ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
assert(GV->getName() == Name() && ConflictGV->getName() != Name &&
assert(GV->getName() == Name && ConflictGV->getName() != Name &&
"ForceRenaming didn't work");
}

View File

@ -420,7 +420,7 @@ static void ForceRenaming(GlobalValue *GV, const std::string &Name) {
ConflictGV->setName(""); // Eliminate the conflict
GV->setName(Name); // Force the name back
ConflictGV->setName(Name); // This will cause ConflictGV to get renamed
assert(GV->getName() == Name() && ConflictGV->getName() != Name &&
assert(GV->getName() == Name && ConflictGV->getName() != Name &&
"ForceRenaming didn't work");
}