summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vector-shift1.c
blob: 51bc0ad39894472b12c3c1cfde69b67bc42df664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
#define vector(elcount, type)  \
__attribute__((vector_size((elcount)*sizeof(type)))) type

int main (int argc, char *argv[]) {
    vector(4, float) vfloat0 = {1., 2., 3., 4.};
    vector(4, float) vfloat1 = {1., 2., 3., 4.};
    
    vector(4,   int) vint   = {1,  1,  1,  1 };
    
    vint <<= vfloat0;  /* { dg-error "nvalid operands to binary <<" } */
    vfloat0 >>= vint;  /* { dg-error "nvalid operands to binary >>" } */

    vfloat0 <<= vfloat1;  /* { dg-error "nvalid operands to binary <<" } */

    return 0;
}