Minor bug caught by Ashwin Chandra

llvm-svn: 28491
This commit is contained in:
Evan Cheng 2006-05-26 06:22:34 +00:00
parent 0e47716e69
commit 29296b844f
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
} else
O << COMMDirective << name << "," << Size;
} else {
if (Subtarget->TargetType == X86Subtarget::isCygwin) {
if (Subtarget->TargetType != X86Subtarget::isCygwin) {
if (I->hasInternalLinkage())
O << "\t.local\t" << name << "\n";
}