Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / simd-4.c
blobf7b28d45229801a2d4b28d500f0b7f9d979ffe11
1 /* { dg-do compile } */
3 typedef int myint;
5 float __attribute__((vector_size(16))) b;
6 int __attribute__((vector_size(16))) d;
7 myint __attribute__((vector_size(16))) d2;
8 unsigned int __attribute__((vector_size(16))) e;
10 void foo()
12 b + d; /* { dg-error "invalid operands to binary" } */
13 d += e;
14 d2 += d;