Skip to content
Snippets Groups Projects
Commit 2675a651 authored by Dan Gohman's avatar Dan Gohman
Browse files

Indent the .text, .data, and .bss directives in assembly output, so that

they are consistent with the other directives.

llvm-svn: 36687
parent ac050d44
No related branches found
No related tags found
No related merge requests found
......@@ -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),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment