aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/modmod.c
blob: e09a20beb3799b5a5cd4148854a4ee64e529185c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-options "-O -fdump-tree-optimized-raw" } */

int f(int a, int b){
  a %= b;
  return a % b;
}
int g(unsigned a, unsigned b){
  a %= b;
  return a < b;
}

/* { dg-final { scan-tree-dump-times "trunc_mod_expr" 1 "optimized" } } */