diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2009-08-27 15:52:44 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2009-08-27 15:52:44 +0000 |
commit | 9263a05aab271f6a9b2174c54aa49c4fdaa71750 (patch) | |
tree | 10353e422c9a76ffde8279c809ea12cf82e337c3 | |
parent | d3b60aa685759e7240a561a292d967e76fd2a927 (diff) | |
download | ffmpeg-9263a05aab271f6a9b2174c54aa49c4fdaa71750.tar.gz |
Mark "i" parameter of vector_clipf_sse() as early-clobber
Originally committed as revision 19731 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
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" ); |