mirror of
https://github.com/RPCS3/llvm.git
synced 2026-08-26 18:26:51 -04:00
c97b26586f
Fix the condition for when the new global takes over the name of the existing one to be the negation of the condition for the new global to get internal linkage. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258355 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
69 B
LLVM
8 lines
69 B
LLVM
define void @B() {
|
|
call void @A()
|
|
ret void
|
|
}
|
|
|
|
declare void @A()
|
|
|