(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
vector-4.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-fno-common" { target { { hppa*-*-hpux* } && { ! lp64 } } } } */
       3  #define vector __attribute__((vector_size(4*sizeof(int)) ))
       4  
       5  vector int a, b, c;
       6  
       7  
       8  /* Test that remainder works for vectors. */
       9  void f(void)
      10  {
      11    a = b % c;
      12  }