From 2f89e0b7aeb35256bd3c38a50b377c38ee1541e7 Mon Sep 17 00:00:00 2001 From: Mus M Date: Wed, 2 Aug 2017 21:27:34 -0400 Subject: [PATCH] Fix typo in sqrt_llvm --- src/utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.jl b/src/utils.jl index 8526a94..3e55f2d 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -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