mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
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:
parent
4bb1895072
commit
c5bf28a812
11
test/CFrontend/2006-03-16-VectorCtor.c
Normal file
11
test/CFrontend/2006-03-16-VectorCtor.c
Normal 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 };
|
||||
|
Loading…
x
Reference in New Issue
Block a user