mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-05 21:50:21 +08:00
2002-05-28 Elena Zannoni <ezannoni@redhat.com>
From Jason Eckhardt <jle@redhat.com> * d10v_sim.h (INC_ADDR): Correctly handle the case where MOD_E is less than MOD_S (post-decrement).
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2002-05-28 Elena Zannoni <ezannoni@redhat.com>
|
||||
|
||||
From Jason Eckhardt <jle@redhat.com>
|
||||
* d10v_sim.h (INC_ADDR): Correctly handle the case where MOD_E is
|
||||
less than MOD_S (post-decrement).
|
||||
|
||||
2002-06-01 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* interp.c (sim_fetch_register, sim_store_register): Use a switch
|
||||
|
@ -435,7 +435,7 @@ do \
|
||||
{ \
|
||||
int test_i = i < 0 ? i : ~((i) - 1); \
|
||||
if (PSW_MD && GPR (x) == (MOD_E & test_i)) \
|
||||
SET_GPR (x, MOD_S); \
|
||||
SET_GPR (x, MOD_S & test_i); \
|
||||
else \
|
||||
SET_GPR (x, GPR (x) + (i)); \
|
||||
} \
|
||||
|
Reference in New Issue
Block a user