Skip to content

Commit 9bb4c9f

Browse files
committed
correct signature
1 parent b29d239 commit 9bb4c9f

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/math/arithmetic/fma.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,6 @@ end
7979
@inline function muladd(x::DoubleFloat{T}, y::DoubleFloat{T}, z::T) where {T<:IEEEFloat}
8080
return fma(x, y, z)
8181
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}
82+
@inline function muladd(x::T, y::T, z::DoubleFloat{T}) where {T<:IEEEFloat}
8683
return fma(x, y, z)
8784
end

0 commit comments

Comments
 (0)