ARM: allow register operands for shifts in MULL()

Originally committed as revision 16818 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2009-01-27 16:06:34 +00:00
parent 20631a9c15
commit 1214bd86dc
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}