(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr84417.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target int32plus } */
       3  
       4  void fn1()
       5  {
       6    __attribute__((__vector_size__(sizeof(double)))) double x;
       7    double *a = (double *)&x;
       8    *a + *(a + 8446744073709551615LL);
       9  }