llvm-6502/test/Assembler/2007-02-07-RenameInternals.ll
Reid Spencer 2aa745e709 For PR1187:
Add a test case to test rename of internal linkage functions with the same
name, without an error or warning.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34018 91177308-0d34-0410-b5e6-96231b3b80d8
2007-02-07 23:41:10 +00:00

12 lines
150 B
LLVM

; PR1187
; RUN: llvm-upgrade < %s > /dev/null
implementation
internal void %func(int %x) {
ret void
}
internal void %func(int %x) {
ret void
}