OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vector-shift1.c] - Rev 724

Go to most recent revision | Compare with Previous | Blame | View Log

/* { 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;
}
 
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.