From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22400 invoked by alias); 8 Oct 2009 14:09:59 -0000 Received: (qmail 22389 invoked by uid 22791); 8 Oct 2009 14:09:58 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,SPF_FAIL X-Spam-Check-By: sourceware.org Received: from mx20.gnu.org (HELO mx20.gnu.org) (199.232.41.8) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 08 Oct 2009 14:09:52 +0000 Received: from [65.74.133.4] (helo=mail.codesourcery.com) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mvtgk-0008NF-P3 for gcc-patches@gcc.gnu.org; Thu, 08 Oct 2009 10:09:51 -0400 Received: (qmail 19434 invoked from network); 8 Oct 2009 14:09:49 -0000 Received: from unknown (HELO digraph.polyomino.org.uk) (joseph@127.0.0.2) by mail.codesourcery.com with ESMTPA; 8 Oct 2009 14:09:49 -0000 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.69) (envelope-from ) id 1Mvtgi-0002qt-7Q; Thu, 08 Oct 2009 14:09:48 +0000 Date: Thu, 08 Oct 2009 14:14:00 -0000 From: "Joseph S. Myers" To: Nick Clifton cc: gcc-patches@gcc.gnu.org Subject: Re: RFA: Add support for Renesas RX architecture to GCC (take 2) In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-detected-operating-system: by mx20.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2009-10/txt/msg00523.txt.bz2 On Thu, 8 Oct 2009, Nick Clifton wrote: > +@item Int08 > +A constant in the range -256 to 255, inclusive. > + > +@item Sint08 > +A constant in the range -128 to 127, inclusive. > + > +@item Sint16 > +A constant in the range -32768 to 32767, inclusive. > + > +@item Sint24 > +A constant in the range -32768 to 32767, inclusive. > + > +@item Uint08 > +A constant in the range -8388608 to 8388607, inclusive. All of these should use @minus{} for the minus sign. > + if (! warned) > + { > + warning (0, "no fixed registers available \ > + for use by fast interrupt handler"); It looks like this will have two consecutive spaces in the middle of the string. Generally we use C90 string concatenation if the string won't fit conveniently on one source file, rather than backslash-newline. -- Joseph S. Myers joseph@codesourcery.com