Commit 1c012e6b authored by Justin Ruggles's avatar Justin Ruggles

x86: float_dsp: fix loading of the len parameter on x86-32

parent b3deec32
......@@ -121,7 +121,10 @@ VECTOR_FMUL_SCALAR
;------------------------------------------------------------------------------
%macro VECTOR_DMUL_SCALAR 0
%if UNIX64
%if ARCH_X86_32
cglobal vector_dmul_scalar, 3,4,3, dst, src, mul, len, lenaddr
mov lenq, lenaddrm
%elif UNIX64
cglobal vector_dmul_scalar, 3,3,3, dst, src, len
%else
cglobal vector_dmul_scalar, 4,4,3, dst, src, mul, len
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment