Skip to content

Commit 2f89e0b

Browse files
authored
Fix typo in sqrt_llvm
1 parent fffd2e1 commit 2f89e0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ const FMA_FAST = is_fma_fast(Float64) && is_fma_fast(Float32)
2626
if VERSION < v"0.7-"
2727
_sqrt(x::T) where {T<:Union{Float32,Float64}} = Base.sqrt_llvm_fast(x)
2828
else
29-
_sqrt(x::T) where {T<:Union{Float32,Float64}} = Base.sqrt_llvm_(x)
29+
_sqrt(x::T) where {T<:Union{Float32,Float64}} = Base.sqrt_llvm(x)
3030
end

0 commit comments

Comments
 (0)