[llvm-commits] CVS: llvm/lib/Target/TargetAsmInfo.cpp

Dan Gohman djg at cray.com
Thu May 3 11:46:49 PDT 2007



Changes in directory llvm/lib/Target:

TargetAsmInfo.cpp updated: 1.25 -> 1.26
---
Log message:

Indent the .text, .data, and .bss directives in assembly output, so that
they are consistent with the other directives.


---
Diffs of the changes:  (+3 -3)

 TargetAsmInfo.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/Target/TargetAsmInfo.cpp
diff -u llvm/lib/Target/TargetAsmInfo.cpp:1.25 llvm/lib/Target/TargetAsmInfo.cpp:1.26
--- llvm/lib/Target/TargetAsmInfo.cpp:1.25	Tue May  1 17:23:12 2007
+++ llvm/lib/Target/TargetAsmInfo.cpp	Thu May  3 13:46:30 2007
@@ -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\", at progbits"),
   TLSBSSSection("\t.section .tbss,\"awT\", at nobits"),
   ZeroFillDirective(0),






More information about the llvm-commits mailing list