brintos

brintos / llvm-project-archived public Read only

0
0
Text · 185 B · 5f016b6 Raw
11 lines · plain
1; RUN: %lli -jit-kind=mcjit -force-interpreter %s2 3declare void @exit(i32)4declare i32 @rand()5 6define i32 @main() {7  %ret = call i32 @rand()8  call void @exit(i32 0)9  ret i32 %ret10}11