diff options
author | Owen Anderson <resistor@mac.com> | 2011-10-14 20:28:57 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-10-14 20:28:57 +0000 |
commit | 4a49dee2215469d14e06a3b4e7ba060b2eb9ec8e (patch) | |
tree | c9cf9f15b88072a807d1db703b57c74d9b4a7687 /llvm | |
parent | faa32a9b836c8799dd5a0669371770f5d48954c0 (diff) | |
download | bcm5719-llvm-4a49dee2215469d14e06a3b4e7ba060b2eb9ec8e.tar.gz bcm5719-llvm-4a49dee2215469d14e06a3b4e7ba060b2eb9ec8e.zip |
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.
llvm-svn: 141984
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/MC/MCAsmInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmInfo.cpp b/llvm/lib/MC/MCAsmInfo.cpp index f34b313ebd0..95861bc61c2 100644 --- a/llvm/lib/MC/MCAsmInfo.cpp +++ b/llvm/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"; |