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
This commit is contained in:
Chris Lattner 2006-03-16 18:47:51 +00:00
parent 4bb1895072
commit c5bf28a812

View File

@ -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 };