mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
9105f66d6f
I'm doing this in two phases for a better "git blame" record. This commit removes the previous AArch64 backend and redirects all functionality to ARM64. It also deduplicates test-lines and removes orphaned AArch64 tests. The next step will be "git mv ARM64 AArch64" and rewire most of the tests. Hopefully LLVM is still functional, though it would be even better if no-one ever had to care because the rename happens straight afterwards. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209576 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
585 B
ArmAsm
17 lines
585 B
ArmAsm
// RUN: llvm-mc -triple=arm64-none-linux-gnu -filetype=obj %s -o - | \
|
|
// RUN: llvm-readobj -r | FileCheck -check-prefix=OBJ %s
|
|
|
|
ldr x0, some_label
|
|
ldr w3, some_label
|
|
ldrsw x9, some_label
|
|
prfm pldl3keep, some_label
|
|
|
|
// OBJ: Relocations [
|
|
// OBJ-NEXT: Section (2) .rela.text {
|
|
// OBJ-NEXT: 0x0 R_AARCH64_LD_PREL_LO19 some_label 0x0
|
|
// OBJ-NEXT: 0x4 R_AARCH64_LD_PREL_LO19 some_label 0x0
|
|
// OBJ-NEXT: 0x8 R_AARCH64_LD_PREL_LO19 some_label 0x0
|
|
// OBJ-NEXT: 0xC R_AARCH64_LD_PREL_LO19 some_label 0x0
|
|
// OBJ-NEXT: }
|
|
// OBJ-NEXT: ]
|