llvm-project/bolt/test/AArch64/constant-island-reference.s
YongKang Zhu fc89b1c2d8
[BOLT] Get symbol for const island referenced across func by relocation (#178988)
When handling relocation in one function referencing code or
data defined in another function, we should check if relocation
target is constant island or not, and get the referenced symbol
accordingly for both cases.
2026-02-02 16:05:40 -08:00

21 lines
446 B
ArmAsm

// Test BOLT won't ignore function having reference to constant island
// that is defined in another function.
// RUN: %clang %cxxflags -fuse-ld=lld %s -o %t.so -Wl,-q -no-pie
// RUN: llvm-bolt %t.so -o %t.bolt.so --strict
.text
.type foo,@function
foo:
adrp x9, :got:_global_func_ptr
ldr x9, [x9, #:got_lo12:_global_func_ptr]
blr x9
.size foo, .-foo
.type bar,@function
bar:
nop
_global_func_ptr:
.quad 0
.size bar, .-bar