(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr80468.c
       1  /* PR c/80468 */
       2  /* { dg-do compile { target { ! int128 } } } */
       3  /* { dg-options "" } */
       4  
       5  void
       6  foo (void)
       7  {
       8    __attribute__ ((__vector_size__ (4 * sizeof (unsigned)))) __int128 b;	/* { dg-error "is not supported on this target" } */
       9    0 != b;
      10  }