From c5bf28a812871e71b06fe4f6d52c8c641dbca33a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 16 Mar 2006 18:47:51 +0000 Subject: [PATCH] New testcase, the new CFE compiles this into insertelement instructions, the 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 | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/CFrontend/2006-03-16-VectorCtor.c diff --git a/test/CFrontend/2006-03-16-VectorCtor.c b/test/CFrontend/2006-03-16-VectorCtor.c new file mode 100644 index 00000000000..38445144f39 --- /dev/null +++ b/test/CFrontend/2006-03-16-VectorCtor.c @@ -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 }; +