aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr84417.c
blob: 9c2b023254b675927d1cbec695f272b9d0a6d883 (plain)
1
2
3
4
5
6
7
8
9
/* { dg-do compile } */
/* { dg-require-effective-target int32plus } */

void fn1()
{
  __attribute__((__vector_size__(sizeof(double)))) double x;
  double *a = (double *)&x;
  *a + *(a + 8446744073709551615LL);
}