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

This commit is contained in:
Justin Ruggles 2012-12-05 12:51:34 -05:00
parent b3deec3253
commit 1c012e6bfb
1 changed files with 4 additions and 1 deletions

View File

@ -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