aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-05-03 18:46:30 +0000
committerDan Gohman <gohman@apple.com>2007-05-03 18:46:30 +0000
commit9570165ef03e9b5d39d9bef28e39017b3f82989f (patch)
treef2c185dc09eb947aed0c6e56876cf200443a87ec
parent4998264403539a8201899756193261eb4f9d7f0b (diff)
Indent the .text, .data, and .bss directives in assembly output, so that
they are consistent with the other directives. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36687 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/TargetAsmInfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/TargetAsmInfo.cpp b/lib/Target/TargetAsmInfo.cpp
index b7e3440766..8f85366b78 100644
--- a/lib/Target/TargetAsmInfo.cpp
+++ b/lib/Target/TargetAsmInfo.cpp
@@ -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),