Mercurial > hg > CbC > CbC_gcc
comparison gcc/testsuite/gcc.dg/fold-div-3.c @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
68:561a7518be6b | 111:04ced10e8804 |
---|---|
1 /* { dg-do compile } */ | |
2 /* { dg-options "-O -fdump-tree-original" } */ | |
3 | |
4 unsigned int | |
5 apply_frontend_param (unsigned int spi_bias) | |
6 { | |
7 static const int ppm = 8000; | |
8 spi_bias /= 1000ULL + ppm/1000; | |
9 return spi_bias; | |
10 } | |
11 | |
12 /* Make sure we perform the division in the narrower type. */ | |
13 | |
14 /* { dg-final { scan-tree-dump "spi_bias = spi_bias / 1008;" "original" } } */ |