set DIVISOR for each use of h/w divider

This commit is contained in:
graham sanderson
2021-06-27 12:53:22 -05:00
committed by Luke Wren
parent 61b7cbdc54
commit 44feae4caf
2 changed files with 19 additions and 0 deletions

View File

@ -158,6 +158,23 @@ void test_nesting() {
if (0xffffffffu != a * 11 + b) {
FAILED();
}
static uint64_t z64;
z64 -= 47;
uint64_t a64 = z64 / -13635;
uint64_t b64 = z64 % -13635;
if (z64 != a64 * -13635 + b64) {
FAILED();
}
// specifically check 64/32 divide
static uint64_t c64 = 0x13ffffffffull;
static uint32_t cd = 1;
a64 = c64 / cd;
b64 = c64 % cd;
if (c64 != a64 * cd + b64) {
FAILED();
}
cd++;
}
// these use the divider
for(uint i=0;i<=100;i+=20) {