Skip to content

Commit 9df2b24

Browse files
stevengjnsajko
andcommitted
Update base/math.jl
Co-authored-by: Neven Sajko <s@purelymail.com>
1 parent cf2a6b9 commit 9df2b24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/math.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function _evalpoly(z::Complex, p)
160160
for i in N-2:-1:1
161161
ai = a
162162
a = muladd(r, ai, b)
163-
@inbounds b = muladd(-s, ai, p[i])
163+
b = muladd(-s, ai, @inbounds p[i])
164164
end
165165
ai = a
166166
muladd(ai, z, b)

0 commit comments

Comments
 (0)