Skip to content

Commit

Permalink
Remove another unused flag.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193756 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
espindola committed Oct 31, 2013
1 parent b46bc1c commit d7ef09b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
8 changes: 0 additions & 8 deletions include/llvm/MC/MCAsmInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ AMDGPUMCAsmInfo::AMDGPUMCAsmInfo(StringRef &TT) : MCAsmInfo() {

//===--- Global Variable Emission Directives --------------------------===//
GlobalDirective = ".global";
ExternDirective = ".extern";
HasSetDirective = false;
HasAggressiveSymbolFolding = true;
COMMDirectiveAlignmentIsInBytes = false;
Expand Down

0 comments on commit d7ef09b

Please sign in to comment.