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