1/* PR target/37395 */
2
3int
4f (int j)
5{
6  int i;
7  asm volatile ("" : "=r"(i));
8  if (i >= 0)
9    j = 0;
10  return j;
11}
12