3 # RUN: split-file %s %t
4 # RUN: llvm-as %t/lazy.ll -o %tlazybitcode.o
5 # RUN: llvm-mc -filetype=obj -triple=x86_64-elf %t/dummy.s -o %tdummy.o
6 # RUN: llvm-mc -filetype=obj -triple=x86_64-elf %t/lazy.s -o %tlazy.o
7 # RUN: llvm-mc -filetype=obj -triple=x86_64-elf %t/ref.s -o %tref.o
8 # RUN: llvm-mc -filetype=obj -triple=x86_64-elf %t/weakref.s -o %tweakref.o
9 # RUN: ld.lld -shared -o %t1.so %tdummy.o --start-lib %tlazy.o --wrap lazy
10 # RUN: llvm-readelf -s %t1.so | FileCheck --check-prefix=NO-LAZY %s
11 # RUN: ld.lld -shared -o %t2.so %tdummy.o --start-lib %tlazybitcode.o --wrap lazy
12 # RUN: llvm-readelf -s %t2.so | FileCheck --check-prefix=NO-LAZY %s
13 # RUN: ld.lld -shared -o %t3.so %tdummy.o --start-lib %tlazy.o -u lazy --wrap lazy
14 # RUN: llvm-readelf -s %t3.so | FileCheck --check-prefix=LAZY-DEF %s
15 # RUN: ld.lld -shared -o %t4.so %tdummy.o %tlazy.o --wrap lazy
16 # RUN: llvm-readelf -s %t4.so | FileCheck --check-prefix=LAZY-DEF %s
17 # RUN: ld.lld -shared -o %t5.so %tref.o --start-lib %tlazy.o --wrap lazy
18 # RUN: llvm-readelf -s %t5.so | FileCheck --check-prefix=LAZY-DEF %s
19 # RUN: ld.lld -shared -o %t6.so %tweakref.o --start-lib %tlazy.o --wrap lazy
20 # RUN: llvm-readelf -s %t6.so | FileCheck --check-prefix=LAZY-REF %s
21 # RUN: ld.lld -shared -o %t7.so %tweakref.o --start-lib %tlazybitcode.o --wrap lazy
22 # RUN: llvm-readelf -s %t7.so | FileCheck --check-prefix=LAZY-REF %s
23 # RUN: ld.lld -shared -o %tweakref.so %tweakref.o -soname libweakref.so
24 # RUN: ld.lld -shared -o %t8.so %tdummy.o %tweakref.so --start-lib %tlazy.o --wrap lazy
25 # RUN: llvm-readelf -s %t8.so | FileCheck --check-prefix=NO-LAZY %s
28 # NO-LAZY-NOT: __wrap_lazy
30 # LAZY-DEF-DAG: [[#]] lazy
31 # LAZY-DEF-DAG: UND __wrap_lazy
33 # LAZY-REF-NOT: UND lazy
34 # LAZY-REF-DAG: UND __wrap_lazy
35 # LAZY-REF-NOT: UND lazy
43 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
44 target triple = "x86_64-elf"