mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 06:32:24 +00:00
15 lines
387 B
ArmAsm
15 lines
387 B
ArmAsm
|
// 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.
|
||
|
|
||
|
jmp foo@PLT
|
||
|
|
||
|
// CHECK: ('_relocations', [
|
||
|
// CHECK-NEXT: # Relocation 0
|
||
|
// CHECK-NEXT: (('r_offset',
|
||
|
// CHECK-NEXT: ('r_sym',
|
||
|
// CHECK-NEXT: ('r_type', 4)
|
||
|
// CHECK-NEXT: ('r_addend',
|
||
|
// CHECK-NEXT: ),
|
||
|
// CHECK-NEXT: ])
|