mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
linux-user: fix up oversealous nitpicking
Looks like linux-user code was correct, just unreadable: what it wanted to do with "-=" was really assign a negative number, not decrement. Fix up accordingly. Reported-by: Laurent Desnogues <laurent.desnogues@gmail.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
committed by
Blue Swirl
parent
58458bb47f
commit
22e4104079
@@ -191,7 +191,7 @@ unsigned int EmulateAll(unsigned int opcode, FPA11* qfpa, CPUARMState* qregs)
|
||||
if(nRc == 1 && get_float_exception_flags(&fpa11->fp_status))
|
||||
{
|
||||
//printf("fef 0x%x\n",float_exception_flags);
|
||||
nRc -= get_float_exception_flags(&fpa11->fp_status);
|
||||
nRc = -get_float_exception_flags(&fpa11->fp_status);
|
||||
}
|
||||
|
||||
//printf("returning %d\n",nRc);
|
||||
|
||||
Reference in New Issue
Block a user