Fixed indentation.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22270 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John Criswell 2005-06-20 19:59:22 +00:00
parent 31c98bfb85
commit 57c24508d3

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);