This is the mail archive of the cgen@sourceware.org mailing list for the CGEN project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] m32r-*-as For a code depended for host word size.


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.
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;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]