diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2013-04-24 23:56:14 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2013-04-24 23:56:14 +0000 |
commit | 87cba4a4c1d5b8b026c83b0916b37255600ecd5f (patch) | |
tree | 07cd030b6dd37c6fb6f0f1ccd9d21ed90b66c8be | |
parent | 8c31b298149ca3c3f2bbd9e8aa9a01c4d91f3d74 (diff) |
R600: Use SHT_PROGBITS for the .AMDGPU.config section
The libelf implementation that is distributed here:
http://www.mr511.de/software/english.html
will not parse sections that are marked SHT_NULL.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180230 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/R600/AMDGPUAsmPrinter.cpp | 2 | ||||
-rw-r--r-- | test/CodeGen/R600/elf.ll | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/R600/AMDGPUAsmPrinter.cpp b/lib/Target/R600/AMDGPUAsmPrinter.cpp index dc0461a641..7dabbfa229 100644 --- a/lib/Target/R600/AMDGPUAsmPrinter.cpp +++ b/lib/Target/R600/AMDGPUAsmPrinter.cpp @@ -59,7 +59,7 @@ bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) { const MCSectionELF *ConfigSection = getObjFileLowering().getContext() .getELFSection(".AMDGPU.config", - ELF::SHT_NULL, 0, + ELF::SHT_PROGBITS, 0, SectionKind::getReadOnly()); OutStreamer.SwitchSection(ConfigSection); if (STM.device()->getGeneration() > AMDGPUDeviceInfo::HD6XXX) { diff --git a/test/CodeGen/R600/elf.ll b/test/CodeGen/R600/elf.ll index 555ee3d5c3..dbe3b1f417 100644 --- a/test/CodeGen/R600/elf.ll +++ b/test/CodeGen/R600/elf.ll @@ -3,6 +3,7 @@ ; ELF-CHECK: Format: ELF32 ; ELF-CHECK: Name: .AMDGPU.config +; ELF-CHECK: Type: SHT_PROGBITS ; CONFIG-CHECK: .section .AMDGPU.config ; CONFIG-CHECK-NEXT: .long 45096 |