diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-16 01:37:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-16 01:37:14 +0000 |
commit | a689edd067267a0752dec3add6ca28edd18c5336 (patch) | |
tree | 5f98c6ce831a408567dc899844bec89e2800cee0 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | a091179b5fa6cd5d37ddc81de72e4b3af818c692 (diff) | |
download | bcm5719-llvm-a689edd067267a0752dec3add6ca28edd18c5336.tar.gz bcm5719-llvm-a689edd067267a0752dec3add6ca28edd18c5336.zip |
fix inverted conditional
llvm-svn: 93614
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index dd25437a20f..ae59f9c3881 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/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()); |