150
|
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 '.dynsym' contains 2 entries:
|
|
14 # CHECK-NEXT: Num: Value Size Type Bind Vis Ndx Name
|
|
15 # CHECK-NEXT: 0: 0000000000000000 0 NOTYPE LOCAL DEFAULT UND
|
|
16 # CHECK-NEXT: 1: 0000000000000000 0 FUNC WEAK DEFAULT UND foo
|
|
17
|
|
18 .globl _start
|
|
19 .weak foo
|
|
20
|
|
21 _start:
|
|
22 mov $foo, %eax
|
|
23 callq foo
|