mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-27 13:30:05 +00:00
10 lines
275 B
LLVM
10 lines
275 B
LLVM
|
; RUN: %lli_mcjit -extra-modules=%p/multi-module-b.ir,%p/multi-module-c.ir -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
|
||
|
|
||
|
declare i32 @FB()
|
||
|
|
||
|
define i32 @main() {
|
||
|
%r = call i32 @FB( ) ; <i32> [#uses=1]
|
||
|
ret i32 %r
|
||
|
}
|
||
|
|