diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2010-10-31 18:14:48 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2010-10-31 18:14:48 +0000 |
commit | 153ca56b38d84c4e144fdd72764035ebe4304002 (patch) | |
tree | c12a6af736fd126b911d0a0dbb5e9c00595bdaad /libavcodec/x86/dsputil_mmx.c | |
parent | ba40452095af9e4379346762acae332dd29f4338 (diff) | |
download | ffmpeg-153ca56b38d84c4e144fdd72764035ebe4304002.tar.gz |
xmm_clobbers: list xmm registers first in clobber list
suncc does not like the leading commas inside the macro, but it has no problem
with trailing commas.
Originally committed as revision 25615 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/dsputil_mmx.c')
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index 705ba98328..5dac6da8de 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -2004,9 +2004,9 @@ static void vorbis_inverse_coupling_sse(float *mag, float *ang, int blocksize) "jl 1b \n"\ :"+&r"(i)\ :"r"(samples[0]+len), "r"(matrix)\ - :"memory"\ - XMM_CLOBBERS(, "%xmm0", "%xmm1", "%xmm2", "%xmm3",\ - "%xmm4", "%xmm5", "%xmm6", "%xmm7")\ + :XMM_CLOBBERS("%xmm0", "%xmm1", "%xmm2", "%xmm3", \ + "%xmm4", "%xmm5", "%xmm6", "%xmm7",)\ + "memory"\ ); #define MIX_MISC(stereo)\ |