aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/conversion/simd2.C
blob: 873e707e0036f6eb988111dcca98b7888c445305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */

/* Test generic operations on vectors.  */

int __attribute__((vector_size(16))) a, b, c;
int __attribute__((vector_size(8))) d;
void foo()
{
     a = b ^ c;
     a = b + c;
     a = b - c;
     a = b * c;
     a = b / c;
     a = -b;
     a = d + b;		/* { dg-error "invalid operands to binary +" } */
}