mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 17:33:29 +00:00
c5bf28a812
old one crashes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26794 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
243 B
C
12 lines
243 B
C
// 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 };
|
|
|