Commit 97726e86 authored by Michael Niedermayer's avatar Michael Niedermayer

x86/intmath: fix type of FASTDIV

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7238ed6c
......@@ -27,7 +27,7 @@
__asm__ volatile(\
"mull %3"\
:"=d"(ret), "=a"(dmy)\
:"1"(a), "g"(ff_inverse[b])\
:"1"((unsigned int)(a)), "g"(ff_inverse[b])\
);\
ret;\
})
......
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