(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr104279.c
       1  /* PR tree-optimization/104279 */
       2  /* { dg-do compile } */
       3  
       4  unsigned a, b;
       5  
       6  int
       7  main ()
       8  {
       9    b = ~(0 || ~0);
      10    a = ~b / ~a;
      11    return 0;
      12  }