summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vector-shift.c
blob: f2b12ba73f6d5e8cb72b44554fad9add725c311d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
#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;
}