(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
powerpc/
pr106736-2.c
       1  /* { dg-require-effective-target powerpc_p9modulo_ok } */
       2  /* If the default cpu type is power10 or later, type __vector_pair is
       3     supported.  To keep the test point available all the time, this case
       4     specifies -mdejagnu-cpu=power9 here.  */
       5  /* { dg-options "-mdejagnu-cpu=power9" } */
       6  
       7  /* Verify there is no ICE and don't check the error messages on unsupported
       8     type since they could be fragile and are not test points of this case.  */
       9  
      10  /* { dg-excess-errors "pr106736-2" } */
      11  
      12  void
      13  foo (__vector_pair *a, __vector_pair *b)
      14  {
      15    *a = *b;
      16  }
      17