From: Dan Gohman Date: Wed, 1 Aug 2007 14:42:30 +0000 (+0000) Subject: Change a .size directive to use a tab instead of a space, for consistency. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a9f643432deabcdd83fed5539e6e9009842f1e11;p=oota-llvm.git Change a .size directive to use a tab instead of a space, for consistency. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40672 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86ATTAsmPrinter.cpp b/lib/Target/X86/X86ATTAsmPrinter.cpp index 95a2a11c07c..b0e6ed127d4 100644 --- a/lib/Target/X86/X86ATTAsmPrinter.cpp +++ b/lib/Target/X86/X86ATTAsmPrinter.cpp @@ -180,7 +180,7 @@ bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) { } if (TAI->hasDotTypeDotSizeDirective()) - O << "\t.size " << CurrentFnName << ", .-" << CurrentFnName << "\n"; + O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n"; if (TAI->doesSupportDebugInformation()) { // Emit post-function debug information.