bolt/deps/llvm-18.1.8/llvm/test/ExecutionEngine/MCJIT/test-call-no-external-funcs.ll
2025-02-14 19:21:04 +01:00

15 lines
310 B
LLVM

; RUN: %lli -jit-kind=mcjit %s > /dev/null
; RUN: %lli %s > /dev/null
define i32 @_Z14func_exit_codev() nounwind uwtable {
entry:
ret i32 0
}
define i32 @main() nounwind uwtable {
entry:
%retval = alloca i32, align 4
store i32 0, ptr %retval
%call = call i32 @_Z14func_exit_codev()
ret i32 %call
}