1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/Linker/2003-01-30-LinkerRename.ll

12 lines
362 B
LLVM
Raw Normal View History

2003-01-30 20:28:01 +01:00
; This fails because the linker renames the external symbol not the internal
; one...
; RUN: echo "implementation internal int %foo() { ret int 7 }" | llvm-upgrade |\
; RUN: llvm-as > %t.1.bc
; RUN: llvm-upgrade < %s | llvm-as -o %t.2.bc -f
; RUN: llvm-link %t.[12].bc | llvm-dis | grep '@foo()' | grep -v internal
2003-01-30 20:28:01 +01:00
implementation
int %foo() { ret int 0 }