mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
f21a1afe81
llvm-svn: 99818
15 lines
394 B
LLVM
15 lines
394 B
LLVM
; RUN: llvm-as < %s | llvm-dis > %t1.ll
|
|
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
|
|
; RUN: diff %t1.ll %t2.ll
|
|
|
|
%union.anon = type union { i8, i32, float }
|
|
|
|
@union1 = constant union { i32, i8 } { i32 4 }
|
|
@union2 = constant union { i32, i8 } insertvalue(union { i32, i8 } undef, i32 4, 0)
|
|
@union3 = common global %union.anon zeroinitializer, align 8
|
|
|
|
define void @"Unions" () {
|
|
ret void
|
|
}
|
|
|