(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr97488.c
       1  // { dg-do compile { target int128 } }
       2  // { dg-options "-O1 -ftree-vrp" }
       3  
       4  __int128
       5  ef (__int128 ms)
       6  {
       7    int dh = 129;
       8    int *hj = &dh;
       9  
      10    return ms << *hj ? ms : 0;
      11  }