Indent the .text, .data, and .bss directives in assembly output, so that
authorDan Gohman <gohman@apple.com>
Thu, 3 May 2007 18:46:30 +0000 (18:46 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 3 May 2007 18:46:30 +0000 (18:46 +0000)
they are consistent with the other directives.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36687 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/TargetAsmInfo.cpp

index b7e34407669fe00345d94057472d3f626c9a66ff..8f85366b78cced205ea8a0a293e0b53cfc560a4e 100644 (file)
@@ -19,9 +19,9 @@
 using namespace llvm;
 
 TargetAsmInfo::TargetAsmInfo() :
-  TextSection(".text"),
-  DataSection(".data"),
-  BSSSection(".bss"),
+  TextSection("\t.text"),
+  DataSection("\t.data"),
+  BSSSection("\t.bss"),
   TLSDataSection("\t.section .tdata,\"awT\",@progbits"),
   TLSBSSSection("\t.section .tbss,\"awT\",@nobits"),
   ZeroFillDirective(0),