64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
13 lines
200 B
LLVM
13 lines
200 B
LLVM
; RUN: lli -jit-kind=orc-lazy %s
|
|
|
|
define private void @_ZL3foov() {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
define i32 @main(i32 %argc, i8** nocapture readnone %argv) {
|
|
entry:
|
|
tail call void @_ZL3foov()
|
|
ret i32 0
|
|
}
|