aboutsummaryrefslogtreecommitdiffstats
path: root/test/Bitcode
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-06-12 05:20:12 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-06-12 05:20:12 +0000
commitf7e498138f2f15b9391274d0c062fa62ab2e86fc (patch)
tree01170237089d700844b43d2d695218602b262ca6 /test/Bitcode
parent084f7bf8a741fdeb97bf7f2a1befd11758f504e7 (diff)
downloadexternal_llvm-f7e498138f2f15b9391274d0c062fa62ab2e86fc.zip
external_llvm-f7e498138f2f15b9391274d0c062fa62ab2e86fc.tar.gz
external_llvm-f7e498138f2f15b9391274d0c062fa62ab2e86fc.tar.bz2
Don't remove aggregate-typed module level constants before encoding functions
since functions may contain aggregate constants too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73220 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Bitcode')
-rw-r--r--test/Bitcode/2009-06-11-FirstClassAggregateConstant.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Bitcode/2009-06-11-FirstClassAggregateConstant.ll b/test/Bitcode/2009-06-11-FirstClassAggregateConstant.ll
new file mode 100644
index 0000000..415f88e
--- /dev/null
+++ b/test/Bitcode/2009-06-11-FirstClassAggregateConstant.ll
@@ -0,0 +1,12 @@
+; RUN: llvm-as < %s | llvm-dis -disable-output
+; PR4373
+
+@foo = weak global { i32 } zeroinitializer
+@bar = weak global i32 0
+
+define void @test() {
+entry:
+ store { i32 } zeroinitializer, { i32 }* @foo
+ store i32 1, i32* @bar
+ ret void
+}