Skip to content

Commit 7a0d383

Browse files
committed
Fix hang in intfuncs test
cld(17, -10) returned typemax(UInt), which triggerred an infinite loop. The offending call (found by @pabloferz) was: ndigits(unsigned(17), -10) == 3
1 parent a8090d8 commit 7a0d383

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/intfuncs.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ ndigits0z(x::Integer) = ndigits0z(unsigned(abs(x)))
186186

187187
const ndigits_max_mul = Core.sizeof(Int) == 4 ? 69000000 : 290000000000000000
188188

189-
function ndigits0znb(n::Integer, b::Integer)
189+
function ndigits0znb(n::Signed, b::Int)
190190
d = 0
191191
while n != 0
192192
n = cld(n,b)
@@ -198,7 +198,7 @@ end
198198
function ndigits0z(n::Unsigned, b::Int)
199199
d = 0
200200
if b < 0
201-
d = ndigits0znb(n, b)
201+
d = ndigits0znb(signed(n), b)
202202
else
203203
b == 2 && return (sizeof(n)<<3-leading_zeros(n))
204204
b == 8 && return div((sizeof(n)<<3)-leading_zeros(n)+2,3)

0 commit comments

Comments
 (0)