From 2675a651b06cf689738501bbb33c7144d6b41bdd Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 3 May 2007 18:46:30 +0000 Subject: [PATCH] Indent the .text, .data, and .bss directives in assembly output, so that they are consistent with the other directives. llvm-svn: 36687 --- llvm/lib/Target/TargetAsmInfo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/lib/Target/TargetAsmInfo.cpp b/llvm/lib/Target/TargetAsmInfo.cpp index b7e34407669f..8f85366b78cc 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), -- GitLab