(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr83467-2.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -flive-range-shrinkage" } */
       3  /* { dg-require-effective-target int128 } */
       4  
       5  int
       6  a (int b, short c, int d, long e, __int128 f, short g, long h, __int128 i)
       7  {
       8    d <<= f & 31;
       9    f >>= 127;
      10    g *= d > c;
      11    f >>= g;
      12    return b + e + f + h + i;
      13  }