mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
5f61134595
DWARF address ranges contain a reference to the debug_info section. This offset is an absolute relocation except on non-PE/COFF targets where it is section relative. We would emit this incorrectly, and trying to map the debug info from the address would fail. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217317 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
1.1 KiB
ArmAsm
31 lines
1.1 KiB
ArmAsm
# RUN: llvm-mc -triple i686-windows-gnu -g %s -filetype obj -o - \
|
|
# RUN: | llvm-readobj -r - | FileCheck -check-prefix CHECK-COFF %s
|
|
# RUN: llvm-mc -triple i686-windows-itanium -g %s -filetype obj -o - \
|
|
# RUN: | llvm-readobj -r - | FileCheck -check-prefix CHECK-COFF %s
|
|
# RUN: llvm-mc -triple i686-linux-gnu -g %s -filetype obj -o - \
|
|
# RUN: | llvm-readobj -r - | FileCheck -check-prefix CHECK-ELF %s
|
|
|
|
_a:
|
|
movl $65, %eax
|
|
ret
|
|
|
|
# CHECK-COFF: Relocations [
|
|
# CHECK-COFF: Section {{.*}} .debug_info {
|
|
# CHECK-COFF: 0x6 IMAGE_REL_I386_SECREL .debug_abbrev
|
|
# CHECK-COFF: 0xC IMAGE_REL_I386_SECREL .debug_line
|
|
# CHECK-COFF: }
|
|
# CHECK-COFF: Section {{.*}} .debug_aranges {
|
|
# CHECK-COFF: 0x6 IMAGE_REL_I386_SECREL .debug_info
|
|
# CHECK-COFF: }
|
|
# CHECK-COFF: ]
|
|
|
|
# CHECK-ELF: Relocations [
|
|
# CHECK-ELF: Section {{.*}} .rel.debug_info {
|
|
# CHECK-ELF: 0x6 R_386_32 .debug_abbrev
|
|
# CHECK-ELF: 0xC R_386_32 .debug_line
|
|
# CHECK-ELF: }
|
|
# CHECK-ELF: Section {{.*}} .rel.debug_aranges {
|
|
# CHECK-ELF: 0x6 R_386_32 .debug_info
|
|
# CHECK-ELF: }
|
|
# CHECK-ELF: ]
|