summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/MCJIT/cross-module-sm-pic-a.ll
blob: ee26702dfae6ee0dfa3cc3bd892c42dcd7a614f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: %lli_mcjit -extra-module=%p/Inputs/cross-module-b.ll -relocation-model=pic -code-model=small %s > /dev/null
; XFAIL: mips, i686, i386, arm

declare i32 @FB()

define i32 @FA() {
  ret i32 0
}

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