mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
50af088d71
These tests rely specifically on the names of ELF relocations, let alone any other detail. There's no way they'd work if LLVM was emitting something else by default. llvm-svn: 179376
13 lines
399 B
ArmAsm
13 lines
399 B
ArmAsm
// RUN: llvm-mc -triple=aarch64-none-linux-gnu -filetype=obj %s -o - | \
|
|
// RUN: llvm-readobj -r | FileCheck -check-prefix=OBJ %s
|
|
|
|
tbz x6, #45, somewhere
|
|
tbnz w3, #15, somewhere
|
|
|
|
// OBJ: Relocations [
|
|
// OBJ-NEXT: Section (1) .text {
|
|
// OBJ-NEXT: 0x0 R_AARCH64_TSTBR14 somewhere 0x0
|
|
// OBJ-NEXT: 0x4 R_AARCH64_TSTBR14 somewhere 0x0
|
|
// OBJ-NEXT: }
|
|
// OBJ-NEXT: ]
|