]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/ELF/as-needed-weak.s
Vendor import of lld trunk r338150:
[FreeBSD/FreeBSD.git] / test / ELF / as-needed-weak.s
1 # REQUIRES: x86
2
3 # RUN: echo '.globl foo; .type foo, @function; foo:' | \
4 # RUN:   llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t1.o
5 # RUN: ld.lld -shared -o %t1.so -soname libfoo %t1.o
6
7 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t2.o
8 # RUN: ld.lld -o %t.exe %t2.o --as-needed %t1.so
9 # RUN: llvm-readelf -dynamic-table -dyn-symbols %t.exe | FileCheck %s
10
11 # CHECK-NOT: libfoo
12
13 # CHECK:      Symbol table of .hash for image:
14 # CHECK-NEXT: Num Buc:    Value          Size   Type   Bind Vis      Ndx Name
15 # CHECK-NEXT:   1   1: 0000000000000000     0 FUNC    WEAK   DEFAULT UND foo@
16
17 .globl _start
18 .weak foo
19
20 _start:
21   mov $foo, %eax
22   callq foo