aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/conversion/simd2.C
blob: a67df561ebd42a6493304b898b0ebb397955ea24 (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 "can't convert between vector" } */
}