mirror of https://github.com/xemu-project/xemu.git
exec.c: Use pow2floor() rather than hand-calculation
Use pow2floor() to round down to the nearest power of 2, rather than an inline calculation. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-id: 1437741192-20955-5-git-send-email-peter.maydell@linaro.org
This commit is contained in:
parent
26efcec158
commit
6554f5c037
4
exec.c
4
exec.c
|
@ -2374,9 +2374,7 @@ static int memory_access_size(MemoryRegion *mr, unsigned l, hwaddr addr)
|
||||||
if (l > access_size_max) {
|
if (l > access_size_max) {
|
||||||
l = access_size_max;
|
l = access_size_max;
|
||||||
}
|
}
|
||||||
if (l & (l - 1)) {
|
l = pow2floor(l);
|
||||||
l = 1 << (qemu_fls(l) - 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
return l;
|
return l;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue