mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-14 03:00:14 +00:00
Remove unintended dereference, kills a warning (Jan Kiszka).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4875 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
ff9cf2cbe4
commit
59aa3bbf9f
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user