A8.6.92 MCR (Encoding A1): if coproc == '101x' then SEE "Advanced SIMD and VFP"
[llvm/stm8.git] / test / FrontendC++ / 2007-05-03-VectorInit.cpp
blobaf56d3a08a8440105a278c23dc3d14b0a9f98b40
1 // RUN: %llvmgxx %s -S -O0 -o -
2 // PR1378
4 typedef float v4sf __attribute__((vector_size(16)));
6 typedef v4sf float4;
8 static float4 splat4(float a)
10 float4 tmp = {a,a,a,a};
11 return tmp;
14 float4 foo(float a)
16 return splat4(a);