modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr37878.c (about)

     1  /* PR target/37878 */
     2  
     3  double y, z;
     4  void foo (long x)
     5  {
     6    y = *(double *) ((long *) (x - 1) + 1);
     7    z = *(double *) ((long *) (x - 1) + 1);
     8  }
     9