From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4505 invoked by alias); 15 Oct 2005 23:04:50 -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 4495 invoked by uid 22791); 15 Oct 2005 23:04:48 -0000 Received: from [220.225.32.98] (HELO calvin.codito.co.in) (220.225.32.98) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Sat, 15 Oct 2005 23:04:48 +0000 Received: from zirakzigil.codito.co.in (zirakzigil.codito.co.in [192.168.100.106]) by calvin.codito.co.in (8.13.2/8.13.2/Debian-1) with ESMTP id j9FN4gR6006517 for ; Sun, 16 Oct 2005 04:34:42 +0530 Subject: [PATCH] : Fix minor typo in doc/porting.texi. From: Ramana Radhakrishnan Reply-To: ramana.radhakrishnan@codito.com To: cgen@sources.redhat.com Content-Type: multipart/mixed; boundary="=-uQj0yUYSbXgK3FFp0UBG" Date: Sat, 15 Oct 2005 23:04:00 -0000 Message-Id: <1129417481.23669.7.camel@localhost.localdomain> Mime-Version: 1.0 X-SW-Source: 2005-q4/txt/msg00009.txt.bz2 --=-uQj0yUYSbXgK3FFp0UBG Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 317 Hi , There is a minor typo in the documentation about Writing define-normal-insn-enum . The example given needs to be changed according to the syntax / convention followed. The patch attached corrects this. Ok to commit ? cheers Ramana -- Ramana Radhakrishnan GNU Tools codito ergo sum (www.codito.com) --=-uQj0yUYSbXgK3FFp0UBG Content-Disposition: attachment; filename=cgen-patch Content-Type: text/x-patch; name=cgen-patch; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-length: 686 Index: doc/porting.texi =================================================================== RCS file: /cvs/src/src/cgen/doc/porting.texi,v retrieving revision 1.8 diff -a -u -r1.8 porting.texi --- doc/porting.texi 7 Jun 2005 17:54:14 -0000 1.8 +++ doc/porting.texi 15 Oct 2005 23:03:38 -0000 @@ -147,7 +147,7 @@ @example (define-normal-insn-enum - insn-op1 "insn format enums" () f-op1 OP1_ + insn-op1 "insn format enums" () OP1_ f-op1 (ADD ADDC SUB SUBC AND OR XOR INV) ) @@ -446,7 +446,7 @@ @example (define-normal-insn-enum - insn-op1 "insn format enums" () f-op1 OP1_ + insn-op1 "insn format enums" () OP1_ f-op1 (ADD ADDC SUB SUBC AND OR XOR INV) ) --=-uQj0yUYSbXgK3FFp0UBG--