From patchwork Sun Oct 28 08:42:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 194663 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 708342C007D for ; Sun, 28 Oct 2012 19:42:28 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1352018549; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:From:To:Subject:Date:Message-ID:User-Agent:MIME-Version: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=tmcAuqZ 2E9ON363JgDbSZmUPmo0=; b=SWj7bV/PPTKIzwllYTKMYJk7NDaxkEaXsvjkooD McPI1vxyDuEkduR6eP4BvfO92kp0OhbRfiHO9tK6/73zV14VSpGjYlT8VroKdWsF 1APh/8qlgCxeG03O5IfoBPb8sxyFjr4K3/hwI7NWnGG2AmwVGXBZKlzJldc2YpC/ Iza0= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:X-Auth-Info:Received:Received:From:To:Subject:X-Yow:Date:Message-ID:User-Agent:MIME-Version:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=F5liYNSk/ma29vyfwM3lG5hzewCZ7sSsbNMpH8xkuFDU7hd1vMvK9fTVchKj7p 6Hx2joHreW3nlde1O/5xKHwXh3SolRYXPnuERzSlWWuvju0VRKOYF9xhFYuzSfqz /IvshNXqkBz7RzS7yz0r32Gc+CdEBclN27j/s8SmKJgWw=; Received: (qmail 7442 invoked by alias); 28 Oct 2012 08:42:25 -0000 Received: (qmail 7434 invoked by uid 22791); 28 Oct 2012 08:42:24 -0000 X-SWARE-Spam-Status: No, hits=-0.7 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, SARE_OBFU_ONLINE_SUB X-Spam-Check-By: sourceware.org Received: from mail-out.m-online.net (HELO mail-out.m-online.net) (212.18.0.9) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 28 Oct 2012 08:42:17 +0000 Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 3XqC9f6qYcz4KK41 for ; Sun, 28 Oct 2012 09:42:14 +0100 (CET) X-Auth-Info: YdZUdfPuvO4C/ChCtRzSC/oqESiG+b4OuQu44Vq2V0w= Received: from linux.local (ppp-93-104-156-214.dynamic.mnet-online.de [93.104.156.214]) by mail.mnet-online.de (Postfix) with ESMTPA id 3XqC9f5pcwzbbh5 for ; Sun, 28 Oct 2012 09:42:14 +0100 (CET) Received: by linux.local (Postfix, from userid 501) id B5F231E550C; Sun, 28 Oct 2012 09:42:12 +0100 (CET) From: Andreas Schwab To: gcc-patches@gcc.gnu.org Subject: Move @end to own line X-Yow: .. My vaseline is RUNNING... Date: Sun, 28 Oct 2012 09:42:11 +0100 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux) MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org The texinfo manual says that @end should always be put on a line of its own. Tested with make info dvi pdf html and checked in as obvious. (None of the converters have a problem with this so the output will be the same.) Andreas. * doc/tm.texi.in (Misc): Add newline before @end. * doc/tm.texi: Update. Index: doc/tm.texi =================================================================== --- doc/tm.texi (revision 192885) +++ doc/tm.texi (working copy) @@ -11323,7 +11323,8 @@ accepted by immediate-add plus one. We value of @code{TARGET_CONST_ANCHOR} is a power of 2. For example, on MIPS, where add-immediate takes a 16-bit signed value, @code{TARGET_CONST_ANCHOR} is set to @samp{0x8000}. The default value -is zero, which disables this optimization. @end deftypevr +is zero, which disables this optimization. +@end deftypevr @deftypefn {Target Hook} {unsigned HOST_WIDE_INT} TARGET_MEMMODEL_CHECK (unsigned HOST_WIDE_INT @var{val}) Validate target specific memory model mask bits. When NULL no target specific Index: doc/tm.texi.in =================================================================== --- doc/tm.texi.in (revision 192885) +++ doc/tm.texi.in (working copy) @@ -11165,7 +11165,8 @@ accepted by immediate-add plus one. We value of @code{TARGET_CONST_ANCHOR} is a power of 2. For example, on MIPS, where add-immediate takes a 16-bit signed value, @code{TARGET_CONST_ANCHOR} is set to @samp{0x8000}. The default value -is zero, which disables this optimization. @end deftypevr +is zero, which disables this optimization. +@end deftypevr @hook TARGET_MEMMODEL_CHECK Validate target specific memory model mask bits. When NULL no target specific