OSDN Git Service

New testcase, the new CFE compiles this into insertelement instructions, the
authorChris Lattner <sabre@nondot.org>
Thu, 16 Mar 2006 18:47:51 +0000 (18:47 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 16 Mar 2006 18:47:51 +0000 (18:47 +0000)
old one crashes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26794 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2006-03-16-VectorCtor.c [new file with mode: 0644]

diff --git a/test/CFrontend/2006-03-16-VectorCtor.c b/test/CFrontend/2006-03-16-VectorCtor.c
new file mode 100644 (file)
index 0000000..3844514
--- /dev/null
@@ -0,0 +1,11 @@
+// Passes with the new CFE.
+// RUN: %llvmgcc %s -S -o -
+// XFAIL: *
+
+typedef int v4si __attribute__ ((__vector_size__ (16)));
+void test(v4si *P, v4si *Q, float X) {
+  *P = (v4si){ X, X, X, X } * *Q;
+}
+
+v4si G = (v4si){ 0.1, 1.2, 4.2, 17.2 };
+