[OpenACC] Implement 'collapse' for combined constructs.
[llvm-project.git] / llvm / test / ExecutionEngine / OrcLazy / basic-whole-module-partitions.ll
blob20cb786b16354f69414a2c7bee03f1ff0b3caaae
1 ; RUN: lli -jit-kind=orc-lazy -orc-lazy-debug=funcs-to-stdout \
2 ; RUN:   %s | FileCheck --check-prefix=CHECK-PER-FUNCTION %s
3 ; RUN: lli -jit-kind=orc-lazy -per-module-lazy -orc-lazy-debug=funcs-to-stdout \
4 ; RUN:   %s | FileCheck --check-prefix=CHECK-WHOLE-MODULE %s
6 ; CHECK-PER-FUNCTION-NOT: foo
7 ; CHECK-WHOLE-MODULE: foo
9 ; Checks that the whole module is emitted when -per-module-lazy is enabled,
10 ; even though foo is not called.
11 ; Also checks that the foo function is not emitted when -per-module-lazy is off.
13 define void @foo() {
14 entry:
15   ret void
18 define i32 @main(i32 %argc, ptr nocapture readnone %argv) {
19 entry:
20   ret i32 0