summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/MCJIT/remote/cross-module-a.ll
blob: 97f4edaf22e50fdd3825bfd23c51105e333345ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; RUN: %lli_mcjit -extra-modules=%p/cross-module-b.ir  -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null

; This fails because __main is not resolved in remote mcjit.
; XFAIL: cygwin,mingw32

declare i32 @FB()

define i32 @FA() {
  ret i32 0
}

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