OSDN Git Service

PR middle-end/51761
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / simd-4.c
1 typedef float floatvect2 __attribute__((vector_size (16)));
2
3 typedef union
4 {
5     floatvect2 vector;
6     float f[2];
7 }resfloatvect2;
8
9 void tempf(floatvect2 *x, floatvect2 *y)
10 {
11         floatvect2 temp= *x;
12         floatvect2 temp1=*y;
13         resfloatvect2 temp2;
14         *x=temp+temp1;
15 }