[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / ExecutionEngine / OrcLazy / basic-whole-module-partitions.ll
blob3470666de0c4daa0b678c4543f3c19c49694b35b
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, i8** nocapture readnone %argv) {
19 entry:
20   ret i32 0