2007-01-27 21:09:03 +00:00
|
|
|
; Test linking two functions with different prototypes and two globals
|
2007-01-30 16:16:01 +00:00
|
|
|
; in different modules. This is for PR411
|
2009-08-25 15:38:29 +00:00
|
|
|
; RUN: llvm-as %s -o %t.bar.bc
|
2007-04-16 17:36:08 +00:00
|
|
|
; RUN: echo {define i32* @foo(i32 %x) \{ ret i32* @baz \} \
|
2009-08-25 15:38:29 +00:00
|
|
|
; RUN: @baz = external global i32 } | llvm-as -o %t.foo.bc
|
|
|
|
; RUN: llvm-link %t.bar.bc %t.foo.bc -o %t.bc
|
|
|
|
; RUN: llvm-link %t.foo.bc %t.bar.bc -o %t.bc
|
2007-01-27 21:09:03 +00:00
|
|
|
declare i32* @foo(...)
|
|
|
|
define i32* @bar() {
|
|
|
|
%ret = call i32* (...)* @foo( i32 123 )
|
|
|
|
ret i32* %ret
|
|
|
|
}
|
|
|
|
@baz = global i32 0
|