1/* This testcase caused ICE on any 64-bit arch at -O2/-O3 due to
2   fold/extract_muldiv/convert destroying its argument.  */
3int x, *y, z, *p;
4
5void
6foo (void)
7{
8  p = y + (8 * (x == 1 || x == 3) + z);
9}
10