From patchwork Wed May 16 12:46:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Basile Starynkevitch X-Patchwork-Id: 159620 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 A5B9EB6FFA for ; Wed, 16 May 2012 22:47:11 +1000 (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=1337777231; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Date:From:To:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition:User-Agent:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=El47nQnTY6UXMbvQbX0V9HO8Gbw=; b=hYEff5ZWM6DJPUm 9VFgFQ/lzlM+Jl1Q2feIO3x6AdSadLcRRiNSvLGE2WJZ0Ee54BATx1aPqzvUWi8g YOyzTGr3j2AcpfyXeQssgAujua2OyoxDuV1oEN0ddQ9zVQ2TvwDeYdaU42X1QVT+ uYljiFLu5Xc0UcKvGTZG4H7lW684= 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:Received:Date:From:To:Subject:Message-ID:MIME-Version:Content-Type:Content-Disposition:User-Agent:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=IoLEnJ3OuNf3VpduksafbDB0aQSqjGoxRC4Wr+hn7sJYa81EC8GlkSZS7xzrqK b7JbtquId8HyDXqijg2CozI2PATJqvqmAIp3wvfAyFhGaQ5ebmUPfBpCRt/xZZPw VXY7WwE2c3hKiMCgdVVuWYkUIL5IRbtM74fs+GQDbUyy4=; Received: (qmail 5702 invoked by alias); 16 May 2012 12:47:03 -0000 Received: (qmail 5686 invoked by uid 22791); 16 May 2012 12:47:02 -0000 X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL, BAYES_00, KHOP_SC_CIDR8, TW_SV X-Spam-Check-By: sourceware.org Received: from smtp-103-wednesday.noc.nerim.net (HELO mallaury.nerim.net) (178.132.17.103) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 16 May 2012 12:46:43 +0000 Received: from hector.lesours (ours.starynkevitch.net [213.41.244.95]) by mallaury.nerim.net (Postfix) with ESMTPS id 4927F153422 for ; Wed, 16 May 2012 14:46:36 +0200 (CEST) Received: from basile18 by hector.lesours with local (Exim 4.77) (envelope-from ) id 1SUdcn-0000BU-GP for gcc-patches@gcc.gnu.org; Wed, 16 May 2012 14:46:41 +0200 Date: Wed, 16 May 2012 14:46:41 +0200 From: Basile Starynkevitch To: gcc-patches@gcc.gnu.org Subject: PING PATCH: break lines in announce_function Message-ID: <20120516124641.GB21919@ours.starynkevitch.net> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes 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 Hello All, I am pinging the patch http://gcc.gnu.org/ml/gcc-patches/2012-02/msg00474.html below for trunk svn 187587 ############################################################# patch ########################################################### gcc/ChangeLog entry 2011-05-16 Basile Starynkevitch * toplev.c (announce_function): Output newline periodically. ########################################################### Ok for trunk? Cheers Index: gcc/toplev.c =================================================================== --- gcc/toplev.c (revision 187587) +++ gcc/toplev.c (working copy) @@ -229,6 +229,12 @@ { if (!quiet_flag) { + + static long count; + count++; + if (count % 8 == 0) + putc('\n', stderr); + if (rtl_dump_and_exit) fprintf (stderr, "%s ", identifier_to_locale (IDENTIFIER_POINTER (DECL_NAME (decl))));