From: Owen Anderson Date: Fri, 14 Oct 2011 20:28:57 +0000 (+0000) Subject: Disable code/data region symbols on ELF targets, where different mapping symbols... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5d6a6736a1e8b747a7a2d80c087b8ccc9024d861;p=oota-llvm.git Disable code/data region symbols on ELF targets, where different mapping symbols are used for ARM/Thumb mode code. This should only be re-enabled once we have a solution to properly distinguish these. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141984 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCAsmInfo.cpp b/lib/MC/MCAsmInfo.cpp index f34b313ebd0..95861bc61c2 100644 --- a/lib/MC/MCAsmInfo.cpp +++ b/lib/MC/MCAsmInfo.cpp @@ -62,7 +62,7 @@ MCAsmInfo::MCAsmInfo() { JT8Begin = "$d."; JT16Begin = "$d."; JT32Begin = "$d."; - SupportsDataRegions = true; + SupportsDataRegions = false; SunStyleELFSectionSwitchSyntax = false; UsesELFSectionDirectiveForBSS = false; AlignDirective = "\t.align\t";