[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / ExecutionEngine / Interpreter / alias.ll
blobcf674171e1c2fd159656a33524e36bcd8a7a385e
1 ; RUN: %lli -jit-kind=mcjit -force-interpreter %s
3 define i32 @func() {
4 entry:
5   ret i32 0
8 @alias = alias i32 (), ptr @func
10 define i32 @main() {
11 entry:
12   %call = call i32 @alias()
13   ret i32 %call