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\",@progbits"),
   TLSBSSSection("\t.section .tbss,\"awT\",@nobits"),
   ZeroFillDirective(0),



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to