Commit 36778627 authored by James Almer's avatar James Almer

x86/intmath: add missing early clobber to output operands

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent da6f3451
...@@ -109,7 +109,7 @@ static av_always_inline av_const double av_clipd_sse2(double a, double amin, dou ...@@ -109,7 +109,7 @@ static av_always_inline av_const double av_clipd_sse2(double a, double amin, dou
#endif #endif
__asm__ ("minsd %2, %0 \n\t" __asm__ ("minsd %2, %0 \n\t"
"maxsd %1, %0 \n\t" "maxsd %1, %0 \n\t"
: "+x"(a) : "xm"(amin), "xm"(amax)); : "+&x"(a) : "xm"(amin), "xm"(amax));
return a; return a;
} }
...@@ -125,7 +125,7 @@ static av_always_inline av_const float av_clipf_sse(float a, float amin, float a ...@@ -125,7 +125,7 @@ static av_always_inline av_const float av_clipf_sse(float a, float amin, float a
#endif #endif
__asm__ ("minss %2, %0 \n\t" __asm__ ("minss %2, %0 \n\t"
"maxss %1, %0 \n\t" "maxss %1, %0 \n\t"
: "+x"(a) : "xm"(amin), "xm"(amax)); : "+&x"(a) : "xm"(amin), "xm"(amax));
return a; return a;
} }
......
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