xref: /llvm-project/lld/test/ELF/shlib-undefined-shared.s (revision 0c958fba14bbe65cba7a0dbf5b63a2be2ee75213)
1# REQUIRES: x86
2
3# RUN: llvm-mc -filetype=obj -triple=x86_64-linux-gnu -o %t1.o %S/Inputs/shlib-undefined-ref.s
4# RUN: ld.lld -shared -o %t1.so %t1.o
5
6# RUN: llvm-mc -filetype=obj -triple=x86_64-linux-gnu -o %t2.o %s
7# RUN: echo "{ local: *; };" > %t.script
8# RUN: ld.lld -shared -version-script %t.script -o %t2.so %t2.o %t1.so
9# RUN: llvm-nm -g %t2.so | FileCheck -allow-empty %s
10
11# CHECK-NOT: should_not_be_exported
12
13.globl should_not_be_exported
14should_not_be_exported:
15	ret
16