summaryrefslogtreecommitdiff
path: root/libavcodec/arm
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/arm')
-rw-r--r--libavcodec/arm/mathops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/mathops.h b/libavcodec/arm/mathops.h
index 7a9d632195..00279181db 100644
--- a/libavcodec/arm/mathops.h
+++ b/libavcodec/arm/mathops.h
@@ -33,7 +33,7 @@ static inline av_const int MULL(int a, int b, unsigned shift)
"mov %0, %0, lsr %4 \n\t"
"add %1, %0, %1, lsl %5 \n\t"
: "=&r"(lo), "=&r"(hi)
- : "r"(b), "r"(a), "i"(shift), "i"(32-shift));
+ : "r"(b), "r"(a), "ir"(shift), "ir"(32-shift));
return hi;
}