From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3628 invoked by alias); 14 Oct 2005 08:05:10 -0000 Mailing-List: contact cgen-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cgen-owner@sources.redhat.com Received: (qmail 3612 invoked by uid 22791); 14 Oct 2005 08:05:08 -0000 Received: from mail.renesas.com (HELO mail01.idc.renesas.com) (202.234.163.13) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Fri, 14 Oct 2005 08:05:08 +0000 Received: from mail01.idc.renesas.com ([127.0.0.1]) by mail01.idc.renesas.com. (SMSSMTP 4.1.9.35) with SMTP id M2005101417050402836 ; Fri, 14 Oct 2005 17:05:04 +0900 Received: (from root@localhost) by guardian02.idc.renesas.com with id j9E854FJ005845; Fri, 14 Oct 2005 17:05:04 +0900 (JST) Received: from unknown [172.20.8.69] by guardian02.idc.renesas.com with SMTP id TAA05843 ; Fri, 14 Oct 2005 17:05:04 +0900 Received: from dnma02 (dnma02.rso.renesas.com [172.30.11.200]) by dnma01.rso.renesas.com (iPlanet Messaging Server 5.2 HotFix 1.12 (built Feb 13 2003)) with ESMTP id <0IOC00F1NBSDQ4@dnma01.rso.renesas.com>; Fri, 14 Oct 2005 17:05:01 +0900 (JST) Received: from renesas.com ([10.145.105.179]) by dnma02.rso.renesas.com (iPlanet Messaging Server 5.2 HotFix 1.12 (built Feb 13 2003)) with ESMTP id <0IOC0024VBSDNY@dnma02.rso.renesas.com>; Fri, 14 Oct 2005 17:05:01 +0900 (JST) Date: Fri, 14 Oct 2005 08:05:00 -0000 From: Kazuhiro Inaoka Subject: [PATCH] m32r-*-as For a code depended for host word size. To: Nick Clifton Cc: binutils@sources.redhat.com, cgen@sources.redhat.com Message-id: <434F6596.404@renesas.com> MIME-version: 1.0 Content-type: multipart/mixed; boundary="Boundary_(ID_SMVFTKYEvUQclfB9vYZOWQ)" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; ja-JP; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) X-SW-Source: 2005-q4/txt/msg00005.txt.bz2 This is a multi-part message in MIME format. --Boundary_(ID_SMVFTKYEvUQclfB9vYZOWQ) Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT Content-length: 310 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 * cpu/m32r.opc (parse_slo16): Changed for a code depended for host word size. --Boundary_(ID_SMVFTKYEvUQclfB9vYZOWQ) Content-type: text/plain; name=m32r.opc.patch Content-transfer-encoding: 7BIT Content-disposition: inline; filename=m32r.opc.patch Content-length: 493 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; --Boundary_(ID_SMVFTKYEvUQclfB9vYZOWQ)--