PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / c-c++-common / vector-shift1.c
blobdb8035667a95ec4a107c1be446454cc0cd9699c0
1 /* { dg-do compile } */
2 /* { dg-prune-output "in evaluation of" } */
3 #define vector(elcount, type) \
4 __attribute__((vector_size((elcount)*sizeof(type)))) type
6 int main (int argc, char *argv[]) {
7 vector(4, float) vfloat0 = {1., 2., 3., 4.};
8 vector(4, float) vfloat1 = {1., 2., 3., 4.};
10 vector(4, int) vint = {1, 1, 1, 1 };
12 vint <<= vfloat0; /* { dg-error "nvalid operands to binary <<" } */
13 vfloat0 >>= vint; /* { dg-error "nvalid operands to binary >>" } */
15 vfloat0 <<= vfloat1; /* { dg-error "nvalid operands" } */
17 return 0;