You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
346 B
15 lines
346 B
7 months ago
|
# REQUIRES: aarch64
|
||
|
# RUN: llvm-mc -filetype=obj -triple=aarch64 %s -o %t.o
|
||
|
# RUN: not ld.lld -shared %t.o -o /dev/null 2>&1 | FileCheck %s
|
||
|
|
||
|
## Test we don't create R_AARCH64_RELATIVE.
|
||
|
|
||
|
# CHECK: error: relocation R_AARCH64_ABS32 cannot be used against symbol hidden; recompile with -fPIC
|
||
|
|
||
|
.globl hidden
|
||
|
.hidden hidden
|
||
|
hidden:
|
||
|
|
||
|
.data
|
||
|
.long hidden
|