aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr66552.c
blob: 7583c9ad25a77500453b8a3d0b6f1e4f8e28a507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-lower" } */

unsigned a(unsigned x, int n)
{
  return x >> (n % 32);
}

unsigned b(unsigned x, int n)
{
  return x << (n % 32);
}

/* { dg-final { scan-tree-dump-not " % " "lower" } } */