Commit 57debe55 authored by vitor's avatar vitor

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19731 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6677a426
...@@ -2374,7 +2374,7 @@ static void vector_clipf_sse(float *dst, const float *src, float min, float max, ...@@ -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" "movaps %%xmm3, 48(%1,%0) \n\t"
"sub $64, %0 \n\t" "sub $64, %0 \n\t"
"jge 1b \n\t" "jge 1b \n\t"
:"+r"(i) :"+&r"(i)
:"r"(dst), "r"(src), "m"(min), "m"(max) :"r"(dst), "r"(src), "m"(min), "m"(max)
:"memory" :"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