diff options
author | Dan Gohman <gohman@apple.com> | 2007-05-03 18:46:30 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-05-03 18:46:30 +0000 |
commit | 2675a651b06cf689738501bbb33c7144d6b41bdd (patch) | |
tree | 5c179a122bd60d4e27ce4e3100e0df8edba8aeb1 /llvm/lib/Target/TargetAsmInfo.cpp | |
parent | ac050d446b3db5f2ead09e64c87f2a1fe7f80f30 (diff) | |
download | bcm5719-llvm-2675a651b06cf689738501bbb33c7144d6b41bdd.tar.gz bcm5719-llvm-2675a651b06cf689738501bbb33c7144d6b41bdd.zip |
Indent the .text, .data, and .bss directives in assembly output, so that
they are consistent with the other directives.
llvm-svn: 36687
Diffstat (limited to 'llvm/lib/Target/TargetAsmInfo.cpp')
-rw-r--r-- | llvm/lib/Target/TargetAsmInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/TargetAsmInfo.cpp b/llvm/lib/Target/TargetAsmInfo.cpp index b7e34407669..8f85366b78c 100644 --- a/llvm/lib/Target/TargetAsmInfo.cpp +++ b/llvm/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), |