PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / g++.dg / conversion / simd3.C
blob8d9626449b7c099ac138fd453364af3963337c08
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; /* { dg-message "use -flax-vector-conversions to permit conversions between vectors with differing element types or numbers of subparts.*cannot convert '__vector.4. unsigned int' to '__vector.4. int' in assignment" } */
14         d2 += d;