Fixed indentation.

llvm-svn: 22270
This commit is contained in:
John Criswell 2005-06-20 19:59:22 +00:00
parent d6bee05fc4
commit 9cb5a82cdc
1 changed files with 3 additions and 3 deletions

View File

@ -173,9 +173,9 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
}
emitAlignment(Align);
if (!forCygwin) {
O << "\t.type " << name << ",@object\n";
O << "\t.size " << name << "," << Size << "\n";
if (!forCygwin) {
O << "\t.type " << name << ",@object\n";
O << "\t.size " << name << "," << Size << "\n";
}
O << name << ":\t\t\t\t# ";
WriteAsOperand(O, I, true, true, &M);