Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bolt/test/AArch64/r_aarch64_prelxx.s
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// REQUIRES: system-linux

// RUN: %clang %cflags -nostartfiles -nostdlib %s -o %t.exe -mlittle-endian \
// RUN: -Wl,-q -Wl,-z,max-page-size=4
// RUN: -Wl,-q -Wl,-z,max-page-size=4 -Wl,--no-relax
// RUN: llvm-readelf -Wa %t.exe | FileCheck %s -check-prefix=CHECKPREL

// CHECKPREL: R_AARCH64_PREL16 {{.*}} .dummy + 0
Expand Down Expand Up @@ -36,9 +36,9 @@
.type _start, %function
_start:
adrp x0, datatable
add x0, x0, :lo12:datable
add x0, x0, :lo12:datatable
mov x0, #0
ret
ret

.section .dummy, "a", @progbits
dummy:
Expand Down
Loading