Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / c-c++-common / vector-shift.c
blob593bb36694387cd4639e4ba2d482cefa5b0ed64e
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,char) vchar = {1,2,3,4};
8 vector(4, int) vint = {1,1,1,1};
10 vint <<= vchar; /* { dg-error "nvalid operands to binary <<" } */
11 vchar >>= vint; /* { dg-error "nvalid operands to binary >>" } */
13 return 0;