[FastISel] Support unreachable with NoTrapAfterNoReturn (#118296)
[llvm-project.git] / llvm / test / ExecutionEngine / mov64zext32.ll
blob43bd0fb2f7b43ed428e2b2133565de678ea6929b
1 ; LoongArch does not support mcjit.
2 ; UNSUPPORTED: target=loongarch{{.*}}
4 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
5 ; RUN: %lli %s > /dev/null
7 define i64 @foo() {
8   ret i64 42
11 define i32 @main() {
12   %val = call i64 @foo()
13   %is42 = icmp eq i64 %val, 42
14   br i1 %is42, label %good, label %bad
16 good:
17   ret i32 0
19 bad:
20   ret i32 1
21