(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr57331.c
       1  /* PR tree-optimization/57331 */
       2  
       3  int
       4  foo (int x)
       5  {
       6    void *p = x ? (void *) 1 : (void *) 0;
       7    __INTPTR_TYPE__ b = (__INTPTR_TYPE__) p;
       8    if (b)
       9      return 0;
      10    return 1;
      11  }