You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
394 B

; 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, i32* @v
; CHECK: @a = alias i32, i32* @v{{$}}
define void @f() comdat($f) {
ret void
}
; CHECK: define void @f() comdat {
$i = comdat largest
@i = internal global i32 0, comdat($i)