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
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp
index cda5d71..ffbdb92 100644
--- a/lib/Linker/LinkModules.cpp
+++ b/lib/Linker/LinkModules.cpp
@@ -420,7 +420,7 @@
   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");
 }