summaryrefslogtreecommitdiff
path: root/test/Feature
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-29 17:36:02 +0000
committerChris Lattner <sabre@nondot.org>2010-03-29 17:36:02 +0000
commitd7ba0f2ade9374adbfa7ce62de5d4982e6e10d9c (patch)
treed3f4c55571ca1cdf3021b5fc05f93ea27f47881e /test/Feature
parent553881bddcdeb66c0ae06bf9f62ca63b9f29b2e8 (diff)
downloadllvm-d7ba0f2ade9374adbfa7ce62de5d4982e6e10d9c.tar.gz
llvm-d7ba0f2ade9374adbfa7ce62de5d4982e6e10d9c.tar.bz2
llvm-d7ba0f2ade9374adbfa7ce62de5d4982e6e10d9c.tar.xz
add support for zero initialized unions, patch by Tim Northover!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99818 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature')
-rw-r--r--test/Feature/unions.ll2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Feature/unions.ll b/test/Feature/unions.ll
index 9d6c36bb3c..3cf8c3ce0e 100644
--- a/test/Feature/unions.ll
+++ b/test/Feature/unions.ll
@@ -6,7 +6,9 @@
@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
}
+