diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-11 20:09:53 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-11 20:25:55 +0200 |
commit | 96bc6485bc929741827fc0f08ef06bea662a3eea (patch) | |
tree | 69da9504e715492385351652ecd19fc888944fb6 /libavutil/arm | |
parent | 347363995251a3aec65defadd45f1e053a24cc76 (diff) | |
download | ffmpeg-96bc6485bc929741827fc0f08ef06bea662a3eea.tar.gz |
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>
Diffstat (limited to 'libavutil/arm')
-rw-r--r-- | libavutil/arm/intmath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/arm/intmath.h b/libavutil/arm/intmath.h index efe3915350..52af66e722 100644 --- a/libavutil/arm/intmath.h +++ b/libavutil/arm/intmath.h @@ -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" "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; } |