From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6623 invoked by alias); 15 Dec 2003 04:32:30 -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 6550 invoked from network); 15 Dec 2003 04:32:29 -0000 Received: from unknown (HELO mail01.idc.renesas.com) (202.234.163.13) by sources.redhat.com with SMTP; 15 Dec 2003 04:32:29 -0000 Received: (from root@localhost) by guardian04.idc.renesas.com with id hBF4WPKR013246; Mon, 15 Dec 2003 13:32:25 +0900 (JST) Received: from unknown [172.20.8.68] by guardian04.idc.renesas.com with SMTP id PAA13245 ; Mon, 15 Dec 2003 13:32:25 +0900 Received: from dnma02 (dnma02.rso.renesas.com [10.15.11.200]) by dnma01.rso.renesas.com (iPlanet Messaging Server 5.2 HotFix 1.12 (built Feb 13 2003)) with ESMTP id <0HPX00GUI5XZ0G@dnma01.rso.renesas.com>; Mon, 15 Dec 2003 13:32:23 +0900 (JST) Received: from t1pcapricot.tool.maec.co.jp ([10.145.105.37]) by dnma02.rso.renesas.com (iPlanet Messaging Server 5.2 HotFix 1.12 (built Feb 13 2003)) with SMTP id <0HPX009TO5XZLS@dnma02.rso.renesas.com>; Mon, 15 Dec 2003 13:32:23 +0900 (JST) Date: Mon, 15 Dec 2003 04:32:00 -0000 From: Kazuhiro Inaoka Subject: [PATCH] m32r's pop need PIPE_O attribute To: Nick Clifton Cc: binutils@sources.redhat.com, gdb-patches@sources.redhat.com, cgen@sources.redhat.com Message-id: <009201c3c2c5$30ab89c0$2569910a@tool.maec.co.jp> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Content-type: text/plain; charset=iso-2022-jp Content-transfer-encoding: 7BIT X-Priority: 3 X-MSMail-priority: Normal X-SW-Source: 2003-q4/txt/msg00038.txt.bz2 Hello Nick M32Rx's pop instructions have PIPE_O attribute, but there was specified no PIPE attribute. This patch was dorpping. Please commit the following patch and regenerate opcodes, sim files 2003-12-15 Kazuhiro Inaoka < inaoka dot kazuhiro at renesas dot com > * cpu/m32r.cpu: pop need PIPE_O attribute. Kazuhiro Index: m32r.cpu =================================================================== RCS file: /cvs/src/src/cgen/cpu/m32r.cpu,v retrieving revision 1.5 diff -c -r1.5 m32r.cpu *** m32r.cpu 3 Dec 2003 17:38:50 -0000 1.5 --- m32r.cpu 15 Dec 2003 04:23:10 -0000 *************** *** 1387,1393 **** ) (dnmi pop "pop" ! ((IDOC MEM)) "pop $dr" (emit ld-plus dr (sr 15)) ; "ld %0,@sp+" ) --- 1387,1393 ---- ) (dnmi pop "pop" ! ((PIPE O) (IDOC MEM)) "pop $dr" (emit ld-plus dr (sr 15)) ; "ld %0,@sp+" )