We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b29d239 commit 9bb4c9fCopy full SHA for 9bb4c9f
1 file changed
src/math/arithmetic/fma.jl
@@ -79,9 +79,6 @@ end
79
@inline function muladd(x::DoubleFloat{T}, y::DoubleFloat{T}, z::T) where {T<:IEEEFloat}
80
return fma(x, y, z)
81
end
82
-@inline function muladd(x::DoubleFloat{T}, y::T, z::DoubleFloat{T}) where {T<:IEEEFloat}
83
- return fma(x, y, z)
84
-end
85
-@inline function muladd(x::T, y::DoubleFloat{T}, z::DoubleFloat{T}) where {T<:IEEEFloat}
+@inline function muladd(x::T, y::T, z::DoubleFloat{T}) where {T<:IEEEFloat}
86
87
0 commit comments