view gcc/testsuite/c-c++-common/vector-shift1.c @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +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, 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" } */

    return 0;
}