Commit d8962ffb authored by James Almer's avatar James Almer

avutil/x86util: don't use movss in VBROADCASTSS macro when src and dst args are the same

Reviewed-by: 's avatarHenrik Gramner <henrik@gramner.com>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent fc9f14c7
......@@ -833,7 +833,9 @@
%if cpuflag(avx)
vbroadcastss %1, %2
%else ; sse
%ifnidn %1, %2
movss %1, %2
%endif
shufps %1, %1, 0
%endif
%endmacro
......
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