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