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] - Blame information for rev 724

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

Line No. Rev Author Line
1 689 jeremybenn
/* { dg-do compile } */
2
#define vector(elcount, type)  \
3
__attribute__((vector_size((elcount)*sizeof(type)))) type
4
 
5
int main (int argc, char *argv[]) {
6
    vector(4, float) vfloat0 = {1., 2., 3., 4.};
7
    vector(4, float) vfloat1 = {1., 2., 3., 4.};
8
 
9
    vector(4,   int) vint   = {1,  1,  1,  1 };
10
 
11
    vint <<= vfloat0;  /* { dg-error "nvalid operands to binary <<" } */
12
    vfloat0 >>= vint;  /* { dg-error "nvalid operands to binary >>" } */
13
 
14
    vfloat0 <<= vfloat1;  /* { dg-error "nvalid operands to binary <<" } */
15
 
16
    return 0;
17
}
18
 

powered by: WebSVN 2.1.0

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