diff options
author | DJ Delorie <dj@redhat.com> | 2010-07-03 04:09:56 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2010-07-03 04:09:56 +0000 |
commit | 21375995bd28258d997c67b0736426e5aabc581b (patch) | |
tree | 4d42190503a47f23dead5c280f0464ee04622fb4 /cpu/m32c.cpu | |
parent | 81a0b7e2ae09cfd58f4d9505928ff426e10ade05 (diff) | |
download | gdb-21375995bd28258d997c67b0736426e5aabc581b.zip gdb-21375995bd28258d997c67b0736426e5aabc581b.tar.gz gdb-21375995bd28258d997c67b0736426e5aabc581b.tar.bz2 |
* m32c.cpu (f-dsp-8-s24): Mask high byte after shifting it.
* m32c-ibld.c: Regenerate.
Diffstat (limited to 'cpu/m32c.cpu')
-rw-r--r-- | cpu/m32c.cpu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/m32c.cpu b/cpu/m32c.cpu index 28d6ea5..bcc3616 100644 --- a/cpu/m32c.cpu +++ b/cpu/m32c.cpu @@ -572,10 +572,10 @@ ) (df f-dsp-8-s24 "24 bit signed" (all-isas) 8 24 INT ((value pc) (or SI - (or (srl value 16) (and value #xff00)) + (or (and (srl value 16) #xff) (and value #xff00)) (sll (ext INT (trunc QI (and value #xff))) 16))) ((value pc) (or SI - (or (srl value 16) (and value #xff00)) + (or (and (srl value 16) #xff) (and value #xff00)) (sll (ext INT (trunc QI (and value #xff))) 16))) ) |