1# REQUIRES: x86 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 7 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. 10 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 17 18# CHECK: NOTYPE GLOBAL DEFAULT UND f 19 20.data 21.quad f 22