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
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 -d --dyn-syms %t.exe | FileCheck %s
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