summaryrefslogtreecommitdiff
path: root/lib/MC/MCAsmInfo.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2011-10-14 20:28:57 +0000
committerOwen Anderson <resistor@mac.com>2011-10-14 20:28:57 +0000
commit5d6a6736a1e8b747a7a2d80c087b8ccc9024d861 (patch)
tree83f746a15903be5b9b2ba1531f068d048f74519f /lib/MC/MCAsmInfo.cpp
parentd712f935f7e027a733741e6ca67b3237a59f65d1 (diff)
downloadllvm-5d6a6736a1e8b747a7a2d80c087b8ccc9024d861.tar.gz
llvm-5d6a6736a1e8b747a7a2d80c087b8ccc9024d861.tar.bz2
llvm-5d6a6736a1e8b747a7a2d80c087b8ccc9024d861.tar.xz
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
Diffstat (limited to 'lib/MC/MCAsmInfo.cpp')
-rw-r--r--lib/MC/MCAsmInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCAsmInfo.cpp b/lib/MC/MCAsmInfo.cpp
index f34b313ebd..95861bc61c 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";