Commit ba404520 authored by Ramiro Polla's avatar Ramiro Polla

idct_sse2_xvid: only mark xmm>=8 as clobbered on x86_64

Originally committed as revision 25614 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 267ff3ae
......@@ -382,9 +382,11 @@ inline void ff_idct_xvid_sse2(short *block)
:
: "%eax", "%ecx", "%edx", "%esi", "memory"
XMM_CLOBBERS(, "%xmm0" , "%xmm1" , "%xmm2" , "%xmm3" ,
"%xmm4" , "%xmm5" , "%xmm6" , "%xmm7" ,
"%xmm8" , "%xmm9" , "%xmm10", "%xmm11",
"%xmm4" , "%xmm5" , "%xmm6" , "%xmm7")
#if ARCH_X86_64
XMM_CLOBBERS(, "%xmm8" , "%xmm9" , "%xmm10", "%xmm11",
"%xmm12", "%xmm13", "%xmm14")
#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