blob: 04331990db338dbc93db722dac8c7616d3dcf2af [file] [log] [blame]
Eric Christopher79cc1e32014-09-02 22:28:02 +00001; RUN: %lli -extra-module=%p/Inputs/cross-module-b.ll -relocation-model=pic -code-model=small %s > /dev/null
Petar Jovanovic97202832015-05-28 13:48:41 +00002; XFAIL: mips-, mipsel-, i686, i386
Andrew Kaylor4968ca52013-10-05 01:53:19 +00003
4declare i32 @FB()
5
6define i32 @FA() {
7 ret i32 0
8}
9
10define i32 @main() {
11 %r = call i32 @FB( ) ; <i32> [#uses=1]
12 ret i32 %r
13}
14