public inbox for cgen@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] m32r-*-as  For a code depended for host word size.
@ 2005-10-14  8:05 Kazuhiro Inaoka
  2005-10-14  8:35 ` Nick Clifton
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Kazuhiro Inaoka @ 2005-10-14  8:05 UTC (permalink / raw)
  To: Nick Clifton; +Cc: binutils, cgen

[-- Attachment #1: Type: text/plain, Size: 310 bytes --]

Hi Nick,

This patch is to change for a code depended for host word size.

Please commit it and regenerate opcodes/m32r-asm.c.

Regards,
Kazuhiro Inaoka

ChangeLog

2005-10-14  Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>

    * cpu/m32r.opc (parse_slo16): Changed for a code depended
    for host word size.

[-- Attachment #2: m32r.opc.patch --]
[-- Type: text/plain, Size: 493 bytes --]

Index: m32r.opc
===================================================================
RCS file: /cvs/src/src/cpu/m32r.opc,v
retrieving revision 1.6
diff -u -p -r1.6 m32r.opc
--- m32r.opc	1 Jul 2005 11:16:30 -0000	1.6
+++ m32r.opc	14 Oct 2005 07:33:21 -0000
@@ -182,7 +182,7 @@ parse_slo16 (CGEN_CPU_DESC cd,
         {
 	  value &= 0xffff;
           if (value & 0x8000)
-             value |= 0xffff0000;
+             value |= ~0xffff;
         }
       *valuep = value;
       return errmsg;

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2005-10-27  0:58 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-10-14  8:05 [PATCH] m32r-*-as For a code depended for host word size Kazuhiro Inaoka
2005-10-14  8:35 ` Nick Clifton
2005-10-14  9:04 ` Andreas Schwab
2005-10-17  1:25   ` Kazuhiro Inaoka
2005-10-18  7:54     ` Nick Clifton
2005-10-18  9:15       ` Kazuhiro Inaoka
2005-10-19 14:45         ` Nick Clifton
2005-10-20  1:18           ` Kazuhiro Inaoka
2005-10-26  5:39 ` Kazuhiro Inaoka
2005-10-26  6:05   ` Alan Modra
2005-10-26  6:21     ` Kazuhiro Inaoka
2005-10-26  7:50       ` Alan Modra
2005-10-27  0:58         ` Kazuhiro Inaoka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).