(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
vector16.C
/* { dg-do compile } */
#define vector __attribute__((vector_size(4*sizeof(int)) ))

vector int a, b, c;


/* Test that remainder works for vectors. */
void f(void)
{
  a = b % c;
}