Chris Lattner | 8a143e8 | 2003-05-31 21:14:45 +0000 | [diff] [blame^] | 1 | ; 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 | |
| 13 | implementation |
| 14 | declare int %foo() |
| 15 | |
| 16 | int %test() { |
| 17 | %X = call int %foo() |
| 18 | ret int %X |
| 19 | } |
| 20 | |