mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
* simops.c: Don't forget to initialize temp for
"ld.h" and "ld.w"
This commit is contained in:
parent
1a393e50be
commit
3046d87986
@ -1,5 +1,8 @@
|
||||
Fri Aug 30 10:33:49 1996 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* simops.c: Don't forget to initialize temp for
|
||||
"ld.h" and "ld.w"
|
||||
|
||||
* interp.c: Remove various debugging printfs.
|
||||
|
||||
* simops.c: Fix satadd, satsub boundary case handling.
|
||||
|
@ -112,6 +112,7 @@ OP_720 ()
|
||||
int result, temp;
|
||||
|
||||
op0 = State.regs[OP[0]];
|
||||
temp = OP[2];
|
||||
temp = (temp << 16) >> 16;
|
||||
temp &= ~0x1;
|
||||
op2 = temp;
|
||||
@ -128,6 +129,7 @@ OP_10720 ()
|
||||
int result, temp;
|
||||
|
||||
op0 = State.regs[OP[0]];
|
||||
temp = OP[2];
|
||||
temp = (temp << 16) >> 16;
|
||||
temp &= ~0x1;
|
||||
op2 = temp;
|
||||
|
Loading…
Reference in New Issue
Block a user