Change a .size directive to use a tab instead of a space, for consistency.
authorDan Gohman <gohman@apple.com>
Wed, 1 Aug 2007 14:42:30 +0000 (14:42 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 1 Aug 2007 14:42:30 +0000 (14:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40672 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ATTAsmPrinter.cpp

index 95a2a11c07c8da4ba7a070ae3708beec2277781a..b0e6ed127d4be1c4d5d8d7e5ba8fc12809d111f9 100644 (file)
@@ -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.