view gcc/testsuite/c-c++-common/vector-shift.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
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;
}