llvm-6502/test/Feature/comdat.ll
David Majnemer c1a6d65d21 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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212732 91177308-0d34-0410-b5e6-96231b3b80d8
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