diff options
author | Tim Northover <tnorthover@apple.com> | 2016-04-21 23:00:17 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2016-04-21 23:00:17 +0000 |
commit | c52c74efdf43f35c7d1b9dcda309218b50573677 (patch) | |
tree | 2530d8ed9847b13cac124e335677b6ba1d8bd9dd /llvm/lib/MC/MCAsmBackend.cpp | |
parent | 89dd1dd2782de71d56c512e44b9dfda2f7b95351 (diff) | |
download | bcm5719-llvm-c52c74efdf43f35c7d1b9dcda309218b50573677.tar.gz bcm5719-llvm-c52c74efdf43f35c7d1b9dcda309218b50573677.zip |
MachO: enable .data_region directives everywhere
We'd disabled them on x86 because back in the early days some host tools
couldn't handle the new load commands. This no longer holds: anyone capable of
deploying Clang should be able to deploy its copies of ar/ranlib/etc.
rdar://25254790
llvm-svn: 267075
Diffstat (limited to 'llvm/lib/MC/MCAsmBackend.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmBackend.cpp b/llvm/lib/MC/MCAsmBackend.cpp index 281bba27a0e..b868b9d4889 100644 --- a/llvm/lib/MC/MCAsmBackend.cpp +++ b/llvm/lib/MC/MCAsmBackend.cpp @@ -12,7 +12,7 @@ #include "llvm/MC/MCFixupKindInfo.h" using namespace llvm; -MCAsmBackend::MCAsmBackend() : HasDataInCodeSupport(false) {} +MCAsmBackend::MCAsmBackend() {} MCAsmBackend::~MCAsmBackend() {} |