From: Elena Zannoni Date: Mon, 3 Jun 2002 00:36:02 +0000 (+0000) Subject: 2002-05-28 Elena Zannoni X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c7675842d89c464a9e374db7817c70626ff28561;p=binutils-gdb.git 2002-05-28 Elena Zannoni From Jason Eckhardt * d10v_sim.h (INC_ADDR): Correctly handle the case where MOD_E is less than MOD_S (post-decrement). --- diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog index d3d0d6b433e..8b4ebaf0dd7 100644 --- a/sim/d10v/ChangeLog +++ b/sim/d10v/ChangeLog @@ -1,3 +1,9 @@ +2002-05-28 Elena Zannoni + + From Jason Eckhardt + * d10v_sim.h (INC_ADDR): Correctly handle the case where MOD_E is + less than MOD_S (post-decrement). + 2002-06-01 Andrew Cagney * interp.c (sim_fetch_register, sim_store_register): Use a switch diff --git a/sim/d10v/d10v_sim.h b/sim/d10v/d10v_sim.h index 3566da01d26..377a001580d 100644 --- a/sim/d10v/d10v_sim.h +++ b/sim/d10v/d10v_sim.h @@ -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)); \ } \