aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/modmod.c
blob: 577d0aa5462347d35b3f276f36dafb6882a01423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { 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" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */