Commit 9e330199 authored by mru's avatar mru

ARM: allow register operands for shifts in MULL()

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16818 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1110dc36
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment