Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base/float.jl
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ function hash(x::Real, h::UInt)

# handle values representable as Int64, UInt64, Float64
if den == 1
left = ndigits0z(num,2) + pow
left = top_set_bit(num) + pow
right = trailing_zeros(num) + pow
if -1074 <= right
if 0 <= right && left <= 64
Expand Down