diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/ELF/alias-reloc.s | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/test/MC/ELF/alias-reloc.s b/test/MC/ELF/alias-reloc.s index e31afa1..352a2a2 100644 --- a/test/MC/ELF/alias-reloc.s +++ b/test/MC/ELF/alias-reloc.s @@ -1,16 +1,26 @@ // RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump | FileCheck %s -// Test that this produces a R_X86_64_PLT32. We produce a relocation with foo -// and gas with bar, but both should be OK as long as the type is correct. +// Test that this produces a R_X86_64_PLT32 with bar. + .globl foo foo: bar = foo + .section zed, "", @progbits call bar@PLT -// CHECK: # Relocation 0 -// CHECK-NEXT: (('r_offset', -// CHECK-NEXT: ('r_sym', +// CHECK: # Symbol 0x00000001 +// CHECK-NEXT: (('st_name', 0x00000005) # 'bar' +// CHECK-NEXT: ('st_bind', 0x00000000) +// CHECK-NEXT: ('st_type', 0x00000000) +// CHECK-NEXT: ('st_other', 0x00000000) +// CHECK-NEXT: ('st_shndx', 0x00000001) +// CHECK-NEXT: ('st_value', 0x00000000) +// CHECK-NEXT: ('st_size', 0x00000000) +// CHECK-NEXT: ), + +// CHECK: # Relocation 0x00000000 +// CHECK-NEXT: (('r_offset', 0x00000001) +// CHECK-NEXT: ('r_sym', 0x00000001) // CHECK-NEXT: ('r_type', 0x00000004) -// CHECK-NEXT: ('r_addend', +// CHECK-NEXT: ('r_addend', 0xfffffffc) // CHECK-NEXT: ), -// CHECK-NEXT: ]) |