Commit 02b424d9 authored by Reimar Döffinger's avatar Reimar Döffinger

Add d suffix to movd target register to make it work with nasm.

Originally committed as revision 25206 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent dc77e985
...@@ -245,12 +245,12 @@ cglobal h264_idct8_add_sse2, 3, 4, 10 ...@@ -245,12 +245,12 @@ cglobal h264_idct8_add_sse2, 3, 4, 10
movsx %1, word [%1] movsx %1, word [%1]
add %1, 32 add %1, 32
sar %1, 6 sar %1, 6
movd m0, %1 movd m0, %1d
lea %1, [%2*3] lea %1, [%2*3]
%else %else
add %3, 32 add %3, 32
sar %3, 6 sar %3, 6
movd m0, %3 movd m0, %3d
lea %3, [%2*3] lea %3, [%2*3]
%endif %endif
pshufw m0, m0, 0 pshufw m0, m0, 0
......
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