提交 12a4b2aa 编写于 作者: T ths

Fix ddivu for 32bit hosts, by Aurelien Jarno.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2890 c046a42c-6fe2-441c-8c8c-71466251a162
上级 c811cf2c
......@@ -237,16 +237,16 @@ void do_ddiv (void)
}
}
#if TARGET_LONG_BITS > HOST_LONG_BITS
void do_ddivu (void)
{
if (T1 != 0) {
/* XXX: lldivu? */
lldiv_t res = lldiv(T0, T1);
env->LO = (uint64_t)res.quot;
env->HI = (uint64_t)res.rem;
env->LO = T0 / T1;
env->HI = T0 % T1;
}
}
#endif
#endif /* TARGET_MIPS64 */
#if defined(CONFIG_USER_ONLY)
void do_mfc0_random (void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册