Skip to content

Commit

Permalink
Fix typo in sqrt_llvm
Browse files Browse the repository at this point in the history
  • Loading branch information
musm authored Aug 3, 2017
1 parent fffd2e1 commit 2f89e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ const FMA_FAST = is_fma_fast(Float64) && is_fma_fast(Float32)
if VERSION < v"0.7-"
_sqrt(x::T) where {T<:Union{Float32,Float64}} = Base.sqrt_llvm_fast(x)
else
_sqrt(x::T) where {T<:Union{Float32,Float64}} = Base.sqrt_llvm_(x)
_sqrt(x::T) where {T<:Union{Float32,Float64}} = Base.sqrt_llvm(x)
end

0 comments on commit 2f89e0b

Please sign in to comment.