mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-03 17:02:03 +00:00
Remove another unused flag.
llvm-svn: 193756
This commit is contained in:
parent
8dcab00115
commit
c53b40ebea
@ -244,11 +244,6 @@ namespace llvm {
|
||||
///
|
||||
const char *GlobalDirective; // Defaults to NULL.
|
||||
|
||||
/// ExternDirective - This is the directive used to declare external
|
||||
/// globals.
|
||||
///
|
||||
const char *ExternDirective; // Defaults to NULL.
|
||||
|
||||
/// HasSetDirective - True if the assembler supports the .set directive.
|
||||
bool HasSetDirective; // Defaults to true.
|
||||
|
||||
@ -515,9 +510,6 @@ namespace llvm {
|
||||
const char *getGlobalDirective() const {
|
||||
return GlobalDirective;
|
||||
}
|
||||
const char *getExternDirective() const {
|
||||
return ExternDirective;
|
||||
}
|
||||
bool hasSetDirective() const { return HasSetDirective; }
|
||||
bool hasAggressiveSymbolFolding() const {
|
||||
return HasAggressiveSymbolFolding;
|
||||
|
@ -55,7 +55,6 @@ AMDGPUMCAsmInfo::AMDGPUMCAsmInfo(StringRef &TT) : MCAsmInfo() {
|
||||
|
||||
//===--- Global Variable Emission Directives --------------------------===//
|
||||
GlobalDirective = ".global";
|
||||
ExternDirective = ".extern";
|
||||
HasSetDirective = false;
|
||||
HasAggressiveSymbolFolding = true;
|
||||
COMMDirectiveAlignmentIsInBytes = false;
|
||||
|
Loading…
Reference in New Issue
Block a user