View | Details | Return to bug 94809
Collapse All | Expand All

(-)gcc/tree.c.jj (+1 lines)
Lines 11523-11528 build_call_expr_internal_loc_array (loca Link Here
11523
    CALL_EXPR_ARG (t, i) = args[i];
11523
    CALL_EXPR_ARG (t, i) = args[i];
11524
  SET_EXPR_LOCATION (t, loc);
11524
  SET_EXPR_LOCATION (t, loc);
11525
  CALL_EXPR_IFN (t) = ifn;
11525
  CALL_EXPR_IFN (t) = ifn;
11526
  process_call_operands (t);
11526
  return t;
11527
  return t;
11527
}
11528
}
11528
11529
(-)gcc/testsuite/gcc.c-torture/execute/pr94809.c.jj (+12 lines)
Line 0 Link Here
1
/* PR tree-optimization/94809 */
2
3
int
4
main ()
5
{
6
  int a = 0;
7
  unsigned long long one = 1;
8
  ((-1ULL / one) < a++, one);
9
  if (a != 1)
10
    __builtin_abort ();
11
  return 0;
12
}

Return to bug 94809