You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
289 B
14 lines
289 B
7 months ago
|
; RUN: llc -filetype=obj -o %t %p/Inputs/foo-return-i32-0.ll
|
||
|
; RUN: lli -jit-kind=orc-lazy -extra-object %t %s
|
||
|
;
|
||
|
; Check that we can load an object file and call a function in it.
|
||
|
|
||
|
declare i32 @foo()
|
||
|
|
||
|
define i32 @main(i32 %argc, i8** %argv) {
|
||
|
entry:
|
||
|
%0 = call i32 @foo()
|
||
|
ret i32 %0
|
||
|
}
|
||
|
|