(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
991202-2.c
       1  
       2  int
       3  f1 ()
       4  {
       5    unsigned long x, y = 1;
       6  
       7    x = ((y * 8192) - 216) % 16;
       8    return x;
       9  }
      10  
      11  int
      12  main ()
      13  {
      14    if (f1 () != 8)
      15      abort ();
      16    exit (0);
      17  }