Commit b5161908 authored by Reimar Döffinger's avatar Reimar Döffinger Committed by Ronald S. Bultje

SBR DSP: fix SSE code to not use SSE2 instructions.

movq from SSE register _to_ memory is an SSE2 instruction.
Use the SSE movlps function instead that does the same thing.
Signed-off-by: 's avatarReimar Döffinger <Reimar.Doeffinger@gmx.de>
Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
parent a9c5b6f6
......@@ -104,7 +104,7 @@ cglobal sbr_hf_g_filt, 5, 6, 5
movq m2, [r1]
punpckldq m0, m0
mulps m2, m0
movq [r0], m2
movlps [r0], m2
add r0, 8
add r2, 4
add r1, STEP
......
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