modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/990117-1.c (about)

     1  int
     2  foo (int x, int y, int i, int j)
     3  {
     4    double tmp1 = ((double) x / y);
     5    double tmp2 = ((double) i / j);
     6  
     7    return tmp1 < tmp2;
     8  }
     9  
    10  main ()
    11  {
    12    if (foo (2, 24, 3, 4) == 0)
    13      abort ();
    14    return 0;
    15  }
    16