summaryrefslogtreecommitdiff
path: root/libavcodec/x86/idct_sse2_xvid.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2010-10-31 18:14:48 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2010-10-31 18:14:48 +0000
commit153ca56b38d84c4e144fdd72764035ebe4304002 (patch)
treec12a6af736fd126b911d0a0dbb5e9c00595bdaad /libavcodec/x86/idct_sse2_xvid.c
parentba40452095af9e4379346762acae332dd29f4338 (diff)
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/idct_sse2_xvid.c')
-rw-r--r--libavcodec/x86/idct_sse2_xvid.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/x86/idct_sse2_xvid.c b/libavcodec/x86/idct_sse2_xvid.c
index 92762906a9..edf65813f0 100644
--- a/libavcodec/x86/idct_sse2_xvid.c
+++ b/libavcodec/x86/idct_sse2_xvid.c
@@ -380,13 +380,13 @@ inline void ff_idct_xvid_sse2(short *block)
"6: \n\t"
: "+r"(block)
:
- : "%eax", "%ecx", "%edx", "%esi", "memory"
- XMM_CLOBBERS(, "%xmm0" , "%xmm1" , "%xmm2" , "%xmm3" ,
- "%xmm4" , "%xmm5" , "%xmm6" , "%xmm7")
+ : XMM_CLOBBERS("%xmm0" , "%xmm1" , "%xmm2" , "%xmm3" ,
+ "%xmm4" , "%xmm5" , "%xmm6" , "%xmm7" ,)
#if ARCH_X86_64
- XMM_CLOBBERS(, "%xmm8" , "%xmm9" , "%xmm10", "%xmm11",
- "%xmm12", "%xmm13", "%xmm14")
+ XMM_CLOBBERS("%xmm8" , "%xmm9" , "%xmm10", "%xmm11",
+ "%xmm12", "%xmm13", "%xmm14",)
#endif
+ "%eax", "%ecx", "%edx", "%esi", "memory"
);
}