For PR1187:

Add a test case to test rename of internal linkage functions with the same
name, without an error or warning.

llvm-svn: 34018
This commit is contained in:
Reid Spencer 2007-02-07 23:41:10 +00:00
parent 1ef3bb8be6
commit ba6d6fab20
1 changed files with 11 additions and 0 deletions

View File

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