This testcase depends on stable output, which isn't guaranteed when concurrent linking is enabled (the default).
40 lines
1.3 KiB
LLVM
40 lines
1.3 KiB
LLVM
; Check that files passed with the -lazy option aren't linked unless they're
|
|
; needed. The foo-ret-42.ll file, which contains only code, should not be
|
|
; needed in this -noexec case, whereas x.o, which contains a global variable
|
|
; referenced by main, should be linked (despite being passed with -lazy).
|
|
;
|
|
; RUN: rm -rf %t && mkdir -p %t
|
|
; RUN: %clang -c -o %t/foo.o %S/Inputs/foo-ret-42.ll
|
|
; RUN: %clang -c -o %t/x.o %S/Inputs/var-x-42.ll
|
|
; RUN: %clang -c -o %t/bar.o %S/Inputs/bar-ret-void-weak.ll
|
|
; RUN: %clang -c -o %t/baz.o %S/Inputs/baz-ret-void-hidden.ll
|
|
; RUN: %clang -c -o %t/main.o %s
|
|
; RUN: %llvm_jitlink -num-threads=0 -noexec -show-linked-files %t/main.o \
|
|
; RUN: -lazy %t/foo.o -lazy %t/x.o -lazy %t/bar.o -lazy %t/baz.o \
|
|
; RUN: | FileCheck %s
|
|
;
|
|
; UNSUPPORTED: system-windows
|
|
; REQUIRES: target={{(arm|aarch|x86_)64.*}}
|
|
;
|
|
; CHECK: Linking {{.*}}main.o
|
|
; CHECK-DAG: Linking <indirect stubs graph #1>
|
|
; CHECK-DAG: Linking {{.*}}x.o
|
|
; CHECK-NOT: Linking {{.*}}foo.o
|
|
|
|
declare i32 @foo()
|
|
@x = external global i32
|
|
|
|
declare void @bar()
|
|
declare hidden void @baz()
|
|
|
|
|
|
define i32 @main(i32 %argc, ptr %argv) {
|
|
entry:
|
|
%foo_result = call i32 @foo()
|
|
call void @bar()
|
|
call void @baz()
|
|
%x_val = load i32, ptr @x
|
|
%result = add nsw i32 %foo_result, %x_val
|
|
ret i32 %result
|
|
}
|