forked from OSchip/llvm-project
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:
parent
1ef3bb8be6
commit
ba6d6fab20
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue