Commit 5d543a3d authored by Ramiro Polla's avatar Ramiro Polla

dsputil_mmx: add xmm registers to clobber list

Originally committed as revision 25611 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e2d13c58
...@@ -2005,6 +2005,8 @@ static void vorbis_inverse_coupling_sse(float *mag, float *ang, int blocksize) ...@@ -2005,6 +2005,8 @@ static void vorbis_inverse_coupling_sse(float *mag, float *ang, int blocksize)
:"+&r"(i)\ :"+&r"(i)\
:"r"(samples[0]+len), "r"(matrix)\ :"r"(samples[0]+len), "r"(matrix)\
:"memory"\ :"memory"\
XMM_CLOBBERS(, "%xmm0", "%xmm1", "%xmm2", "%xmm3",\
"%xmm4", "%xmm5", "%xmm6", "%xmm7")\
); );
#define MIX_MISC(stereo)\ #define MIX_MISC(stereo)\
......
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