From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16534 invoked by alias); 26 Oct 2005 05:39:42 -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 15824 invoked by uid 22791); 26 Oct 2005 05:39:39 -0000 Received: from mail.renesas.com (HELO mail04.idc.renesas.com) (202.234.163.13) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Wed, 26 Oct 2005 05:39:39 +0000 Received: from mail04.idc.renesas.com ([127.0.0.1]) by mail04.idc.renesas.com. (SMSSMTP 4.1.9.35) with SMTP id M2005102614393401375 ; Wed, 26 Oct 2005 14:39:34 +0900 Received: (from root@localhost) by guardian04.idc.renesas.com with id j9Q5dYIa026607; Wed, 26 Oct 2005 14:39:34 +0900 (JST) Received: from unknown [172.20.8.69] by guardian04.idc.renesas.com with SMTP id QAA26606 ; Wed, 26 Oct 2005 14:39:34 +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 <0IOY0051DD1X79@dnma01.rso.renesas.com>; Wed, 26 Oct 2005 14:39:33 +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 <0IOY002I0D1WGF@dnma02.rso.renesas.com>; Wed, 26 Oct 2005 14:39:32 +0900 (JST) Date: Wed, 26 Oct 2005 05:39:00 -0000 From: Kazuhiro Inaoka Subject: Re: [PATCH] m32r-*-as For a code depended for host word size. In-reply-to: <434F6596.404@renesas.com> To: Nick Clifton Cc: binutils@sources.redhat.com, cgen@sources.redhat.com Message-id: <435F1697.2000904@renesas.com> MIME-version: 1.0 Content-type: multipart/mixed; boundary="Boundary_(ID_yphICgcbIWgmLvFHUoI79w)" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; ja-JP; rv:1.4) Gecko/20030624 Netscape/7.1 (ax) References: <434F6596.404@renesas.com> X-SW-Source: 2005-q4/txt/msg00024.txt.bz2 This is a multi-part message in MIME format. --Boundary_(ID_yphICgcbIWgmLvFHUoI79w) Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT Content-length: 306 Hi Nick, This patch is to fix FAIL at testsuite/gas/m32r/seth on x86_64 host. Please commit it and regenerate opcodes/m32r-asm.c. Regards, Kazuhiro Inaoka ChangeLog 2005-10-26 Kazuhiro Inaoka * cpu/m32r.opc (parse_hi16): Do not assume a 32-bit host word size. --Boundary_(ID_yphICgcbIWgmLvFHUoI79w) Content-type: text/plain; name=m32r.opc2.patch Content-transfer-encoding: 7BIT Content-disposition: inline; filename=m32r.opc2.patch Content-length: 486 Index: m32r.opc =================================================================== RCS file: /cvs/src/src/cpu/m32r.opc,v retrieving revision 1.9 diff -p -u -r1.9 m32r.opc --- m32r.opc 19 Oct 2005 14:44:17 -0000 1.9 +++ m32r.opc 26 Oct 2005 05:24:14 -0000 @@ -144,6 +144,7 @@ parse_hi16 (CGEN_CPU_DESC cd, { value = value + (value & 0x8000 ? 0x10000 : 0); value >>= 16; + value &= 0xffff; } *valuep = value; return errmsg; --Boundary_(ID_yphICgcbIWgmLvFHUoI79w)--