mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-22 18:35:45 +00:00
Remove unused flag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193752 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
90f9b8a7bc
commit
b46bc1c91b
@ -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; }
|
||||
|
@ -79,7 +79,6 @@ MCAsmInfo::MCAsmInfo() {
|
||||
HasSingleParameterDotFile = true;
|
||||
HasIdentDirective = false;
|
||||
HasNoDeadStrip = false;
|
||||
HasSymbolResolver = false;
|
||||
WeakRefDirective = 0;
|
||||
WeakDefDirective = 0;
|
||||
LinkOnceDirective = 0;
|
||||
|
@ -58,7 +58,6 @@ MCAsmInfoDarwin::MCAsmInfoDarwin() {
|
||||
|
||||
HasDotTypeDotSizeDirective = false;
|
||||
HasNoDeadStrip = true;
|
||||
HasSymbolResolver = true;
|
||||
|
||||
DwarfUsesRelocationsAcrossSections = false;
|
||||
}
|
||||
|
@ -61,7 +61,6 @@ AMDGPUMCAsmInfo::AMDGPUMCAsmInfo(StringRef &TT) : MCAsmInfo() {
|
||||
COMMDirectiveAlignmentIsInBytes = false;
|
||||
HasDotTypeDotSizeDirective = false;
|
||||
HasNoDeadStrip = true;
|
||||
HasSymbolResolver = false;
|
||||
WeakRefDirective = ".weakref\t";
|
||||
LinkOnceDirective = 0;
|
||||
//===--- Dwarf Emission Directives -----------------------------------===//
|
||||
|
Loading…
x
Reference in New Issue
Block a user