aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/AsmPrinter/AsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index dd25437a20..ae59f9c388 100644
--- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -192,7 +192,7 @@ bool AsmPrinter::doFinalization(Module &M) {
Name->print(O, MAI);
O << '\n';
} else {
- assert(!I->hasLocalLinkage() && "Invalid alias linkage");
+ assert(I->hasLocalLinkage() && "Invalid alias linkage");
}
printVisibility(Name, I->getVisibility());