PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / fold-div-3.c
blob4a6420e724bfdd42c0239e76fafe110eb6e887f1
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-original" } */
4 unsigned int
5 apply_frontend_param (unsigned int spi_bias)
7 static const int ppm = 8000;
8 spi_bias /= 1000ULL + ppm/1000;
9 return spi_bias;
12 /* Make sure we perform the division in the narrower type. */
14 /* { dg-final { scan-tree-dump "spi_bias = spi_bias / 1008;" "original" } } */