Commit c4980484 authored by mru's avatar mru

ARM: fix missing MUL16() return type

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17679 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9f34f314
......@@ -81,7 +81,7 @@ static inline av_const int64_t MAC64(int64_t d, int a, int b)
/* signed 16x16 -> 32 multiply */
# define MUL16 MUL16
static inline av_const MUL16(int ra, int rb)
static inline av_const int MUL16(int ra, int rb)
{
int rt;
__asm__ ("smulbb %0, %1, %2" : "=r"(rt) : "r"(ra), "r"(rb));
......
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