1/* Simplified from PR target/5309.  */
2
3/* { dg-do compile } */
4/* { dg-options "-O2 -mcpu=ultrasparc" } */
5
6extern long bar (unsigned int);
7
8long
9foo (long x, unsigned int y)
10{
11  return *(((long *) (bar (y) - 1)) + 1 + (x >> 2) % 359);
12}
13