1  /* PR rtl-optimization/46034 */
       2  
       3  void bar (int);
       4  
       5  void
       6  foo (int x, int y)
       7  {
       8    int i;
       9    for (i = 0; i < x; i++)
      10      {
      11        y = __builtin_abs (y);
      12        bar (y / 2);
      13      }
      14  }