(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr66552.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -fdump-tree-lower" } */
       3  
       4  unsigned a(unsigned x, int n)
       5  {
       6    return x >> (n % 32);
       7  }
       8  
       9  unsigned b(unsigned x, int n)
      10  {
      11    return x << (n % 32);
      12  }
      13  
      14  /* { dg-final { scan-tree-dump-not " % " "lower" } } */