Commit 9263a05a authored by Vitor Sessak's avatar Vitor Sessak

Mark "i" parameter of vector_clipf_sse() as early-clobber

Originally committed as revision 19731 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d3b60aa6
......@@ -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"
);
......
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