Commit 0d735ca2 authored by Mans Rullgard's avatar Mans Rullgard

ARM: add missing "cc" clobber in av_clipl_int32_arm()

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 3eebc1e1
......@@ -108,7 +108,7 @@ static av_always_inline av_const int32_t av_clipl_int32_arm(int64_t a)
"mvnne %1, #1<<31 \n\t"
"moveq %0, %Q2 \n\t"
"eorne %0, %1, %R2, asr #31 \n\t"
: "=r"(x), "=&r"(y) : "r"(a));
: "=r"(x), "=&r"(y) : "r"(a) : "cc");
return x;
}
......
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