aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/gronk.c
blob: 222b3d3464056197579355a45f200e3dec47e129 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-additional-options "-std=gnu89" } */

test_opt (a, b)
     unsigned a, b;
{
  a = a / b;
  if (a == 0)
    a++;
  return a;
}