aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr84853.c
blob: c74526369a4e3757b7d71f2828192ed697ffb727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* PR c/84853 */
/* { dg-do compile } */

typedef float V __attribute__((__vector_size__ (16)));
typedef int W __attribute__((__vector_size__ (16)));

void
foo (int x, V *y, V *z, W *w)
{
  *y = *y << x;		/* { dg-error "invalid operands to binary <<" } */
  *z = *z << *w;	/* { dg-error "invalid operands to binary <<" } */
}

void
bar (int x, V *y, V *z, W *w)
{
  *y = *y >> x;		/* { dg-error "invalid operands to binary >>" } */
  *z = *z >> *w;	/* { dg-error "invalid operands to binary >>" } */
}