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
This commit is contained in:
Reid Spencer 2007-02-07 23:41:10 +00:00
parent 12f0c7b9cf
commit 2aa745e709

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
}