blob: b1ba4b0b907be163168366ec1b3712dfc5025447 [file] [log] [blame]
Chris Lattner8a143e82003-05-31 21:14:45 +00001; The funcresolve pass will (intentionally) link an _internal_ function body with an
2; 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
6; RUN: echo "implementation internal int %foo() { ret int 7 }" | as > Output/%s.1.bc
7; RUN: as < %s > Output/%s.2.bc
8; RUN: if link Output/%s.[12].bc | dis | grep 'internal' | grep '%foo('
9; RUN: then exit 1
10; RUN: else exit 0
11; RUN: fi
12
13implementation
14declare int %foo()
15
16int %test() {
17 %X = call int %foo()
18 ret int %X
19}
20