diff options
author | DJ Delorie <dj@redhat.com> | 2007-12-19 20:55:03 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2007-12-19 20:55:03 +0000 |
commit | beb7a8835e06f30b212561bd0d6c71eaddf76b83 (patch) | |
tree | e9f599e17817c086d82c2e2933adfa50f472a68a /sim | |
parent | 2f959d61e7b77e18b6369006f43bc3538ff2581a (diff) | |
download | gdb-beb7a8835e06f30b212561bd0d6c71eaddf76b83.zip gdb-beb7a8835e06f30b212561bd0d6c71eaddf76b83.tar.gz gdb-beb7a8835e06f30b212561bd0d6c71eaddf76b83.tar.bz2 |
* frv/frv.c (frvbf_cut): Only look at the six LSBs of
cut_point.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/ChangeLog | 5 | ||||
-rw-r--r-- | sim/frv/frv.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sim/ChangeLog b/sim/ChangeLog index be3f394..7ed1576 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,3 +1,8 @@ +2007-12-19 DJ Delorie <dj@redhat.com> + + * frv/frv.c (frvbf_cut): Only look at the six LSBs of + cut_point. + 2007-10-22 Hans-Peter Nilsson <hp@axis.com> * cris/arch.c, cris/arch.h, cris/cpuall.h, cris/cpuv10.c, diff --git a/sim/frv/frv.c b/sim/frv/frv.c index 2bf1366..138b5d4 100644 --- a/sim/frv/frv.c +++ b/sim/frv/frv.c @@ -1055,6 +1055,7 @@ SI frvbf_cut (SIM_CPU *current_cpu, SI reg1, SI reg2, SI cut_point) { SI result; + cut_point &= 0x3f; if (cut_point < 32) { result = reg1 << cut_point; |