Make testcase more interesting
[oota-llvm.git] / test / Linker / 2003-05-31-LinkerRename.ll
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: link Output/%s.[12].bc | dis | grep 'internal' | not grep '%foo('
9
10 implementation
11 declare int %foo() 
12
13 int %test() { 
14   %X = call int %foo()
15   ret int %X
16 }
17