diff options
author | Nick Clifton <nickc@redhat.com> | 2005-10-14 08:33:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-10-14 08:33:27 +0000 |
commit | ab7c9a26e5eeedc00030c37b450457f6828bf661 (patch) | |
tree | f8bbc7598f302c40ec0fae67cbbe0d0fb6c6bd70 /cpu | |
parent | 7047dd1ea80cd5a3324af03f729f9735bd655a18 (diff) | |
download | gdb-ab7c9a26e5eeedc00030c37b450457f6828bf661.zip gdb-ab7c9a26e5eeedc00030c37b450457f6828bf661.tar.gz gdb-ab7c9a26e5eeedc00030c37b450457f6828bf661.tar.bz2 |
m32r.opc (parse_slo16): Do not assume a 32-bit host word size.
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/ChangeLog | 5 | ||||
-rw-r--r-- | cpu/m32r.opc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/cpu/ChangeLog b/cpu/ChangeLog index 6c9a90d..ecc06b4 100644 --- a/cpu/ChangeLog +++ b/cpu/ChangeLog @@ -1,3 +1,8 @@ +2005-10-14 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> + + * cpu/m32r.opc (parse_slo16): Do not assume a 32-bit host word + size. + 2005-07-25 DJ Delorie <dj@redhat.com> * m32c.opc (parse_unsigned8): Add %dsp8(). diff --git a/cpu/m32r.opc b/cpu/m32r.opc index 63f41a5..afe12eb 100644 --- a/cpu/m32r.opc +++ b/cpu/m32r.opc @@ -182,7 +182,7 @@ parse_slo16 (CGEN_CPU_DESC cd, { value &= 0xffff; if (value & 0x8000) - value |= 0xffff0000; + value |= ~0xffff; } *valuep = value; return errmsg; |