summaryrefslogtreecommitdiff
path: root/libavcodec/arm/mathops.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-01-27 16:06:34 +0000
committerMåns Rullgård <mans@mansr.com>2009-01-27 16:06:34 +0000
commit1214bd86dcc4cea16d908506622b506648900277 (patch)
tree747a2ed3d4a75bb73beb516425ecaddb52082b6b /libavcodec/arm/mathops.h
parent20631a9c1565346c7a87d0b7a4669c1f30c92c7c (diff)
ARM: allow register operands for shifts in MULL()
Originally committed as revision 16818 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/mathops.h')
-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;
}