brintos

brintos / llvm-project-archived public Read only

0
0
Text · 202 B · cf67417 Raw
15 lines · plain
1; RUN: %lli -jit-kind=mcjit -force-interpreter %s2 3define i32 @func() {4entry:5  ret i32 06}7 8@alias = alias i32 (), ptr @func9 10define i32 @main() {11entry:12  %call = call i32 @alias()13  ret i32 %call14}15