diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-31 15:58:33 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-10-31 15:58:33 +0000 |
commit | 4b102d0eaddd7e20285d060214c6aae680ca283f (patch) | |
tree | baeeb84337f5e5fb5fb3a923d658bed98b117a51 | |
parent | a7add488ae63fc2574dda97791cbc65fe67f7771 (diff) | |
download | bcm5719-llvm-4b102d0eaddd7e20285d060214c6aae680ca283f.tar.gz bcm5719-llvm-4b102d0eaddd7e20285d060214c6aae680ca283f.zip |
Remove another unused flag.
llvm-svn: 193756
-rw-r--r-- | llvm/include/llvm/MC/MCAsmInfo.h | 8 | ||||
-rw-r--r-- | llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/llvm/include/llvm/MC/MCAsmInfo.h b/llvm/include/llvm/MC/MCAsmInfo.h index 16c0b54c26b..0c2bc4ca81f 100644 --- a/llvm/include/llvm/MC/MCAsmInfo.h +++ b/llvm/include/llvm/MC/MCAsmInfo.h @@ -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; diff --git a/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp b/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp index 4afdf9096dd..0aeb8d09f29 100644 --- a/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp +++ b/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp @@ -55,7 +55,6 @@ AMDGPUMCAsmInfo::AMDGPUMCAsmInfo(StringRef &TT) : MCAsmInfo() { //===--- Global Variable Emission Directives --------------------------===// GlobalDirective = ".global"; - ExternDirective = ".extern"; HasSetDirective = false; HasAggressiveSymbolFolding = true; COMMDirectiveAlignmentIsInBytes = false; |