mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
93f81d9b33
These should end up (in ELF) as R_X86_64_32S relocs, not R_X86_64_32. Kill the horrid and incomplete special case and FIXME in EncodeInstruction() and set things up so it can infer the signedness from the ImmType just like it can the size and whether it's PC-relative. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200495 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
585 B
ArmAsm
17 lines
585 B
ArmAsm
// RUN: llvm-mc -triple x86_64-linux-gnu -filetype=obj %s | llvm-readobj -r | FileCheck %s
|
|
|
|
|
|
// CHECK: Relocations [
|
|
// CHECK-NEXT: Section ({{[0-9]+}}) .rela.text {
|
|
|
|
pushq $foo // CHECK-NEXT: R_X86_64_32S
|
|
addq $foo, %rax // CHECK-NEXT: R_X86_64_32S
|
|
andq $foo, %rax // CHECK-NEXT: R_X86_64_32S
|
|
movq $foo, %rax // CHECK-NEXT: R_X86_64_32S
|
|
bextr $foo, (%edi), %eax // CHECK-NEXT: R_X86_64_32
|
|
bextr $foo, (%rdi), %rax // CHECK-NEXT: R_X86_64_32S
|
|
imul $foo, %rax // CHECK-NEXT: R_X86_64_32S
|
|
|
|
// CHECK-NEXT: }
|
|
// CHECK-NEXT: ]
|