(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr65014.c
       1  /* PR tree-optimization/65014 */
       2  /* { dg-do compile { target int32plus } } */
       3  
       4  extern int x;
       5  
       6  unsigned
       7  foo (unsigned int y)
       8  {
       9    return (y << ((__INTPTR_TYPE__) &x)) | (y >> (32 - ((__INTPTR_TYPE__) &x)));
      10  }