summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-10-31 15:49:39 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-10-31 15:49:39 +0000
commitb46bc1c91b3200d85c3d16e9da1de30259ec4172 (patch)
treea205cbc5a9c2e3fe3961d1a7981b39e95497be1b /include
parent90f9b8a7bcd02b154a0c068c0589171b43ffba8d (diff)
downloadllvm-b46bc1c91b3200d85c3d16e9da1de30259ec4172.tar.gz
llvm-b46bc1c91b3200d85c3d16e9da1de30259ec4172.tar.bz2
llvm-b46bc1c91b3200d85c3d16e9da1de30259ec4172.tar.xz
Remove unused flag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193752 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCAsmInfo.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index bcf6fe8d58..16c0b54c26 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -283,10 +283,6 @@ namespace llvm {
/// directive.
bool HasNoDeadStrip; // Defaults to false.
- /// HasSymbolResolver - True if this target supports the MachO
- /// .symbol_resolver directive.
- bool HasSymbolResolver; // Defaults to false.
-
/// WeakRefDirective - This directive, if non-null, is used to declare a
/// global as being a weak undefined symbol.
const char *WeakRefDirective; // Defaults to NULL.
@@ -536,7 +532,6 @@ namespace llvm {
bool hasSingleParameterDotFile() const { return HasSingleParameterDotFile; }
bool hasIdentDirective() const { return HasIdentDirective; }
bool hasNoDeadStrip() const { return HasNoDeadStrip; }
- bool hasSymbolResolver() const { return HasSymbolResolver; }
const char *getWeakRefDirective() const { return WeakRefDirective; }
const char *getWeakDefDirective() const { return WeakDefDirective; }
const char *getLinkOnceDirective() const { return LinkOnceDirective; }