PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / modmod.c
blobe09a20beb3799b5a5cd4148854a4ee64e529185c
1 /* { dg-options "-O -fdump-tree-optimized-raw" } */
3 int f(int a, int b){
4 a %= b;
5 return a % b;
7 int g(unsigned a, unsigned b){
8 a %= b;
9 return a < b;
12 /* { dg-final { scan-tree-dump-times "trunc_mod_expr" 1 "optimized" } } */