提交 59aa3bbf 编写于 作者: B balrog

Remove unintended dereference, kills a warning (Jan Kiszka).


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4875 c046a42c-6fe2-441c-8c8c-71466251a162
上级 ff9cf2cb
......@@ -594,8 +594,8 @@ void OPPROTO op_shlr16_Rn(void)
void OPPROTO op_tasb_rN(void)
{
cond_t(*(int8_t *) env->gregs[PARAM1] == 0);
*(int8_t *) env->gregs[PARAM1] |= 0x80;
cond_t((env->gregs[PARAM1] && 0xff) == 0);
*(int8_t *) &env->gregs[PARAM1] |= 0x80;
RETURN();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册