blob: 375c16017b3dad479aa0a3f182fcdab73895017a [file] [log] [blame]
Misha Brukmanb6cb66f2003-09-15 20:04:28 +00001; The funcresolve pass will (intentionally) llvm-link an _internal_ function body with an
Chris Lattner8a143e82003-05-31 21:14:45 +00002; external declaration. Because of this, if we LINK an internal function body into
3; a program that already has an external declaration for the function name, we must
4; rename the internal function to something that does not conflict.
5
Misha Brukmanb6cb66f2003-09-15 20:04:28 +00006; RUN: echo "implementation internal int %foo() { ret int 7 }" | llvm-as > %t.1.bc
7; RUN: llvm-as < %s > %t.2.bc
8; RUN: llvm-link %t.[12].bc | llvm-dis | grep 'internal' | not grep '%foo('
Chris Lattner8a143e82003-05-31 21:14:45 +00009
10implementation
11declare int %foo()
12
13int %test() {
14 %X = call int %foo()
15 ret int %X
16}
17