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/include | |
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/include')
-rw-r--r-- | llvm/include/llvm/MC/MCAsmBackend.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/include/llvm/MC/MCAsmBackend.h b/llvm/include/llvm/MC/MCAsmBackend.h index af0d366d400..40ff8e341cf 100644 --- a/llvm/include/llvm/MC/MCAsmBackend.h +++ b/llvm/include/llvm/MC/MCAsmBackend.h @@ -39,8 +39,6 @@ class MCAsmBackend { protected: // Can only create subclasses. MCAsmBackend(); - unsigned HasDataInCodeSupport : 1; - public: virtual ~MCAsmBackend(); @@ -58,10 +56,6 @@ public: "backend"); } - /// Check whether this target implements data-in-code markers. If not, data - /// region directives will be ignored. - bool hasDataInCodeSupport() const { return HasDataInCodeSupport; } - /// \name Target Fixup Interfaces /// @{ |