blob: 5d4e16fa4a2e03666040b0062e5e1fd5322a8e99 [file] [log] [blame]
Eric Christopher79cc1e32014-09-02 22:28:02 +00001; RUN: %lli -extra-module=%p/Inputs/cross-module-b.ll %s > /dev/null
Andrew Kaylor1b2cfb62013-10-04 00:49:38 +00002
3declare i32 @FB()
4
5define i32 @FA() {
6 ret i32 0
7}
8
9define i32 @main() {
10 %r = call i32 @FB( ) ; <i32> [#uses=1]
11 ret i32 %r
12}
13