Misha Brukman | b6cb66f | 2003-09-15 20:04:28 +0000 | [diff] [blame] | 1 | ; The funcresolve pass will (intentionally) llvm-link an _internal_ function body with an |
Chris Lattner | 8a143e8 | 2003-05-31 21:14:45 +0000 | [diff] [blame] | 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 | |
Misha Brukman | b6cb66f | 2003-09-15 20:04:28 +0000 | [diff] [blame] | 6 | ; 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 Lattner | 8a143e8 | 2003-05-31 21:14:45 +0000 | [diff] [blame] | 9 | |
| 10 | implementation |
| 11 | declare int %foo() |
| 12 | |
| 13 | int %test() { |
| 14 | %X = call int %foo() |
| 15 | ret int %X |
| 16 | } |
| 17 | |