forked from OSchip/llvm-project
AMDGPU: Use the default strings for data emission directives
Summary: This makes the assembly output look nicer and there is no reason to have custom strings for these. Reviewers: arsenm Subscribers: arsenm, llvm-commits Differential Revision: http://reviews.llvm.org/D14671 llvm-svn: 254426
This commit is contained in:
parent
60216f6943
commit
ff63c25753
|
@ -22,13 +22,6 @@ AMDGPUMCAsmInfo::AMDGPUMCAsmInfo(const Triple &TT) : MCAsmInfoELF() {
|
|||
InlineAsmEnd = ";#ASMEND";
|
||||
|
||||
//===--- Data Emission Directives -------------------------------------===//
|
||||
ZeroDirective = ".zero";
|
||||
AsciiDirective = ".ascii\t";
|
||||
AscizDirective = ".asciz\t";
|
||||
Data8bitsDirective = ".byte\t";
|
||||
Data16bitsDirective = ".short\t";
|
||||
Data32bitsDirective = ".long\t";
|
||||
Data64bitsDirective = ".quad\t";
|
||||
SunStyleELFSectionSwitchSyntax = true;
|
||||
UsesELFSectionDirectiveForBSS = true;
|
||||
|
||||
|
|
Loading…
Reference in New Issue