Commit 4ee38ed7 authored by James Almer's avatar James Almer

x86/float_dsp: zero extend len from ff_butterflies_float_sse implicitly

Reviewed-by: 's avatarChristophe Gisquet <christophe.gisquet@gmail.com>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 7f520524
...@@ -359,10 +359,7 @@ cglobal scalarproduct_float, 3,3,2, v1, v2, offset ...@@ -359,10 +359,7 @@ cglobal scalarproduct_float, 3,3,2, v1, v2, offset
;----------------------------------------------------------------------------- ;-----------------------------------------------------------------------------
INIT_XMM sse INIT_XMM sse
cglobal butterflies_float, 3,3,3, src0, src1, len cglobal butterflies_float, 3,3,3, src0, src1, len
%if ARCH_X86_64 shl lend, 2
movsxd lenq, lend
%endif
shl lenq, 2
add src0q, lenq add src0q, lenq
add src1q, lenq add src1q, lenq
neg lenq neg lenq
......
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