diff options
| author | Tom Stellard <thomas.stellard@amd.com> | 2014-10-07 21:09:25 +0000 | 
|---|---|---|
| committer | Tom Stellard <thomas.stellard@amd.com> | 2014-10-07 21:09:25 +0000 | 
| commit | 2b8baaa54640a38b965ba606d2d4d2a4a56173ad (patch) | |
| tree | 12f1a6ba8c3f41e2005e01052892821aab3989a4 /llvm/lib/Target | |
| parent | 022802ab37c3b5b5fafd051115a5988e3a2905ae (diff) | |
| download | bcm5719-llvm-2b8baaa54640a38b965ba606d2d4d2a4a56173ad.tar.gz bcm5719-llvm-2b8baaa54640a38b965ba606d2d4d2a4a56173ad.zip  | |
R600: Remove some redundant initializations from AMDGPUMCAsmInfo
llvm-svn: 219238
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp | 10 | 
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp b/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp index fcec9cbfdc3..d8939fd86e3 100644 --- a/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp +++ b/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp @@ -15,17 +15,12 @@ AMDGPUMCAsmInfo::AMDGPUMCAsmInfo(StringRef &TT) : MCAsmInfoELF() {    HasSingleParameterDotFile = false;    //===------------------------------------------------------------------===//    HasSubsectionsViaSymbols = true; -  HasMachoZeroFillDirective = false; -  HasMachoTBSSDirective = false; -  HasStaticCtorDtorReferenceInStaticMode = false;    LinkerRequiresNonEmptyDwarfLines = true;    MaxInstLength = 16;    SeparatorString = "\n";    CommentString = ";"; -  LabelSuffix = ":";    InlineAsmStart = ";#ASMSTART";    InlineAsmEnd = ";#ASMEND"; -  AssemblerDialect = 0;    //===--- Data Emission Directives -------------------------------------===//    ZeroDirective = ".zero"; @@ -35,14 +30,9 @@ AMDGPUMCAsmInfo::AMDGPUMCAsmInfo(StringRef &TT) : MCAsmInfoELF() {    Data16bitsDirective = ".short\t";    Data32bitsDirective = ".long\t";    Data64bitsDirective = ".quad\t"; -  GPRel32Directive = nullptr;    SunStyleELFSectionSwitchSyntax = true;    UsesELFSectionDirectiveForBSS = true; -  //===--- Alignment Information ----------------------------------------===// -  AlignmentIsInBytes = true; -  TextAlignFillValue = 0; -    //===--- Global Variable Emission Directives --------------------------===//    GlobalDirective = ".global";    HasSetDirective = false;  | 

