2 # RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t.o
3 # RUN: echo '.globl f; f:' | llvm-mc -filetype=obj -triple=x86_64 - -o %t1.o
4 # RUN: echo '.weak f; .data; .quad f' | llvm-mc -filetype=obj -triple=x86_64 - -o %t2.o
5 # RUN: ld.lld -shared %t1.o -o %t1.so
6 # RUN: ld.lld -shared %t2.o -o %t2.so
8 ## The undefined reference is STB_GLOBAL in %t.o while STB_WEAK in %t2.so.
9 ## Check the binding of the result is STB_GLOBAL.
11 # RUN: ld.lld %t.o %t1.so %t2.so -o %t
12 # RUN: llvm-readelf --dyn-syms %t | FileCheck %s
13 # RUN: ld.lld %t1.so %t.o %t2.so -o %t
14 # RUN: llvm-readelf --dyn-syms %t | FileCheck %s
15 # RUN: ld.lld %t1.so %t2.so %t.o -o %t
16 # RUN: llvm-readelf --dyn-syms %t | FileCheck %s
18 # CHECK: NOTYPE GLOBAL DEFAULT UND f