* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / vector-2.c
blobe04d55588e5560ffbb82afc916b5257ffe81ae16
1 /* { dg-options "-msse" { target { i?86-*-* x86_64-*-* } } } */
2 #define vector __attribute__((vector_size(16) ))
3 struct ss
5 vector float mVec;
6 };
7 vector float getCapsule(vector int t)
9 vector float t1 = (vector float)t;
10 struct ss y = {t1};
11 *((float*)&y.mVec) = 1.0;
12 return y.mVec;