new testcase for PR1845
authorChris Lattner <sabre@nondot.org>
Thu, 10 Jan 2008 00:30:38 +0000 (00:30 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 10 Jan 2008 00:30:38 +0000 (00:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45795 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Generic/bool-vector.ll [new file with mode: 0644]

diff --git a/test/CodeGen/Generic/bool-vector.ll b/test/CodeGen/Generic/bool-vector.ll
new file mode 100644 (file)
index 0000000..e0f2a70
--- /dev/null
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | llc
+; PR1845
+
+define void @boolVectorSelect(<4 x i1>* %boolVectorPtr) {
+Body:
+        %castPtr = bitcast <4 x i1>* %boolVectorPtr to <4 x i1>*
+        %someBools = load <4 x i1>* %castPtr, align 1           ; <<4 x i1>>
+        %internal = alloca <4 x i1>, align 16           ; <<4 x i1>*> [#uses=1]
+        store <4 x i1> %someBools, <4 x i1>* %internal, align 1
+        ret void
+}