Skip to content

Commit

Permalink
improve compilation of check_top_bit (#31883)
Browse files Browse the repository at this point in the history
addresses #31819
  • Loading branch information
vtjnash authored May 3, 2019
1 parent 2fb61c3 commit 4111609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/boot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ eval(Core, :(NamedTuple{names,T}(args::T) where {names, T <: Tuple} =

import .Intrinsics: eq_int, trunc_int, lshr_int, sub_int, shl_int, bitcast, sext_int, zext_int, and_int

throw_inexacterror(f::Symbol, @nospecialize(T), val) = (@_noinline_meta; throw(InexactError(f, T, val)))
throw_inexacterror(f::Symbol, ::Type{T}, val) where {T} = (@_noinline_meta; throw(InexactError(f, T, val)))

function is_top_bit_set(x)
@_inline_meta
Expand Down

0 comments on commit 4111609

Please sign in to comment.