simd3.C revision 1.1.1.1
1/* { dg-do compile } */
2
3typedef int myint;
4
5float __attribute__((vector_size(16))) b;
6int __attribute__((vector_size(16))) d;
7myint __attribute__((vector_size(16))) d2;
8unsigned int __attribute__((vector_size(16))) e;
9
10void foo()
11{
12	b + d; /* { dg-error "invalid operands to binary" } */
13	d += e;
14	d2 += d;
15}
16