mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 00:02:52 +00:00
arm: fix av_clipl_int32() asm
Note, the other arm asm code is likely affected too and should be changed as well. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3473639952
commit
96bc6485bc
@ -106,7 +106,7 @@ static av_always_inline av_const int32_t av_clipl_int32_arm(int64_t a)
|
|||||||
"mvnne %1, #1<<31 \n\t"
|
"mvnne %1, #1<<31 \n\t"
|
||||||
"moveq %0, %Q2 \n\t"
|
"moveq %0, %Q2 \n\t"
|
||||||
"eorne %0, %1, %R2, asr #31 \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;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user