mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
371e07845e
This was an omission when handling COFF style comdats with local keys. Should fix the sanitizer-windows bot. llvm-svn: 254543
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
|
|
|