Commit fc7e02f0 authored by Hendrik Leppkes's avatar Hendrik Leppkes Committed by Michael Niedermayer

dcadsp: fix SSE code to not use SSE2 instructions.

movq from SSE register to memory is an SSE2 instruction.
Instead, use SSE movlps, which does the same thing.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4ccd7cb4
...@@ -153,7 +153,7 @@ DECODE_HF ...@@ -153,7 +153,7 @@ DECODE_HF
addps m4, va ; va1+3 vb1+3 va2+4 vb2+4 addps m4, va ; va1+3 vb1+3 va2+4 vb2+4
movhlps vb, m4 ; va1+3 vb1+3 movhlps vb, m4 ; va1+3 vb1+3
addps vb, m4 ; va0..4 vb0..4 addps vb, m4 ; va0..4 vb0..4
movh [outq + count], vb movlps [outq + count], vb
%if %1 %if %1
sub cf0q, 8*NUM_COEF sub cf0q, 8*NUM_COEF
%endif %endif
......
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