aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/TargetAsmInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-08 20:43:12 +0000
committerChris Lattner <sabre@nondot.org>2009-08-08 20:43:12 +0000
commit5277b22687d3513dd29d5a9c8510cac740f933f6 (patch)
tree9e9e43f4b75db5fda4347245ebfac0fe152b1f27 /lib/Target/TargetAsmInfo.cpp
parent17421d81fdbc94dbd8b3549b095303baaf52e689 (diff)
downloadexternal_llvm-5277b22687d3513dd29d5a9c8510cac740f933f6.zip
external_llvm-5277b22687d3513dd29d5a9c8510cac740f933f6.tar.gz
external_llvm-5277b22687d3513dd29d5a9c8510cac740f933f6.tar.bz2
eliminate TargetLoweringObjectFileSparc in favor of a TAI hook.
A TAI hook is appropriate in this case because this is just an asm syntax issue, not a semantic difference. TLOF should model the semantics of the section. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetAsmInfo.cpp')
-rw-r--r--lib/Target/TargetAsmInfo.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/TargetAsmInfo.cpp b/lib/Target/TargetAsmInfo.cpp
index b59e140..5ec36b6 100644
--- a/lib/Target/TargetAsmInfo.cpp
+++ b/lib/Target/TargetAsmInfo.cpp
@@ -49,6 +49,7 @@ TargetAsmInfo::TargetAsmInfo() {
Data16bitsDirective = "\t.short\t";
Data32bitsDirective = "\t.long\t";
Data64bitsDirective = "\t.quad\t";
+ SunStyleELFSectionSwitchSyntax = false;
AlignDirective = "\t.align\t";
AlignmentIsInBytes = true;
TextAlignFillValue = 0;