llvm-6502/test/ExecutionEngine/OrcJIT/Inputs/cross-module-b.ll
Lang Hames cdb79ba982 [Orc] Regression tests for OrcMCJITReplacement.
Duplicated from the MCJIT regression tests.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227780 91177308-0d34-0410-b5e6-96231b3b80d8
2015-02-02 05:04:55 +00:00

8 lines
97 B
LLVM

declare i32 @FA()
define i32 @FB() {
%r = call i32 @FA( ) ; <i32> [#uses=1]
ret i32 %r
}