projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
412c3a5
)
fix inverted conditional
author
Chris Lattner
<sabre@nondot.org>
Sat, 16 Jan 2010 01:37:14 +0000
(
01:37
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Sat, 16 Jan 2010 01:37:14 +0000
(
01:37
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93614
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/AsmPrinter/AsmPrinter.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index dd25437a20fc4611b4edfd7abc7120f59b3cc515..ae59f9c388179cbc5429658fe96c29ddb2f495e9 100644
(file)
--- 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());