From 9263a05aab271f6a9b2174c54aa49c4fdaa71750 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Thu, 27 Aug 2009 15:52:44 +0000 Subject: [PATCH] Mark "i" parameter of vector_clipf_sse() as early-clobber Originally committed as revision 19731 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/x86/dsputil_mmx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index bdf12e14fe..f430abcbb0 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -2374,7 +2374,7 @@ static void vector_clipf_sse(float *dst, const float *src, float min, float max, "movaps %%xmm3, 48(%1,%0) \n\t" "sub $64, %0 \n\t" "jge 1b \n\t" - :"+r"(i) + :"+&r"(i) :"r"(dst), "r"(src), "m"(min), "m"(max) :"memory" );