diff options
author | Chris Lattner <sabre@nondot.org> | 2004-08-04 07:28:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-08-04 07:28:06 +0000 |
commit | 7b0c84dcf59b6ac3a27843fd8162ab36928fba35 (patch) | |
tree | 8ea221294792d02b4c44c483d00e2a4bb4855941 /lib/VMCore | |
parent | c003628a612d3687fb77088a5894314210a65385 (diff) | |
download | external_llvm-7b0c84dcf59b6ac3a27843fd8162ab36928fba35.zip external_llvm-7b0c84dcf59b6ac3a27843fd8162ab36928fba35.tar.gz external_llvm-7b0c84dcf59b6ac3a27843fd8162ab36928fba35.tar.bz2 |
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
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/Linker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Linker.cpp b/lib/VMCore/Linker.cpp index cda5d71..ffbdb92 100644 --- a/lib/VMCore/Linker.cpp +++ b/lib/VMCore/Linker.cpp @@ -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"); } |