1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/test/Feature/comdat.ll
David Majnemer d757d21cef IR: Aliases don't belong to an explicit comdat
Aliases inherit their comdat from their aliasee, they don't have an
explicit comdat.

This fixes PR20279.

llvm-svn: 212732
2014-07-10 16:26:10 +00:00

19 lines
322 B
LLVM

; RUN: llvm-as < %s | llvm-dis | FileCheck %s
$f = comdat any
; CHECK: $f = comdat any
$f2 = comdat any
; CHECK-NOT: f2
@v = global i32 0, comdat $f
; CHECK: @v = global i32 0, comdat $f
@a = alias i32* @v
; CHECK: @a = alias i32* @v{{$}}
define void @f() comdat $f {
ret void
}
; CHECK: define void @f() comdat $f