mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 04:09:45 +00:00
e39a7a6933
This was an omission when handling COFF style comdats with local keys. Should fix the sanitizer-windows bot. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254543 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
256 B
LLVM
10 lines
256 B
LLVM
; RUN: llvm-link -S %s %p/Inputs/comdat15.ll -o - | FileCheck %s
|
|
|
|
$a1 = comdat any
|
|
@bar = global i32 0, comdat($a1)
|
|
|
|
; CHECK: @bar = global i32 0, comdat($a1)
|
|
; CHECK: @baz = private global i32 42, comdat($a1)
|
|
; CHECK: @a1 = internal alias i32, i32* @baz
|
|
|