Mercurial > hg > CbC > GCC_original
view gcc/testsuite/c-c++-common/vector-shift.c @ 16:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
line wrap: on
line source
/* { dg-do compile } */ /* { dg-prune-output "in evaluation of" } */ #define vector(elcount, type) \ __attribute__((vector_size((elcount)*sizeof(type)))) type int main (int argc, char *argv[]) { vector(4,char) vchar = {1,2,3,4}; vector(4, int) vint = {1,1,1,1}; vint <<= vchar; /* { dg-error "nvalid operands to binary <<" } */ vchar >>= vint; /* { dg-error "nvalid operands to binary >>" } */ return 0; }