(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr83521.c
       1  /* PR tree-optimization/83521 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O1 -fno-tree-forwprop" } */
       4  
       5  int
       6  foo (unsigned int x, int y)
       7  {
       8    int *z = (int *)&x;
       9    return (y == 0) ? y : *z;
      10  }