From patchwork Tue Feb 7 12:05:36 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Biener X-Patchwork-Id: 139905 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 F25ED1007D3 for ; Tue, 7 Feb 2012 23:05:56 +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=1329221157; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Date: From:To:Subject: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=bRRFpplbQQwArjo75w+m U6R70Ec=; b=Je8kNZUjN7kdmMEpETTEQXuvAVhdQVBf3wpqy3pmRr+X/aAlF8SF 5PYbZ6rSMr0AlU67fwEL2ZaeRpNs1rSpxd/NteKPXVTHOatWuFr7tHWS7nmBNxCu RVKKF8qfZRZ3orwvayfl16yNZaw3ercFDSwHQhaTB4w70bAcOTTCjTs= 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:Date:From:To:Subject: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=F1WNeNwo5LUUXRYCE/4Gw5tIV33pQdC4uY7WlrzMdXwzIyqbfkVij3aE/hu/xl RwwLqys16Mq4+ohghqYRQLc37+i5l12Nh3oGsXbEb3oLAlPsoUfpKe78EZd+tnMc U+fSoogUvDNQt9Z8awr7vGV5UkZmfhxT2VhOW2eigVg/E=; Received: (qmail 9307 invoked by alias); 7 Feb 2012 12:05:53 -0000 Received: (qmail 9284 invoked by uid 22791); 7 Feb 2012 12:05:51 -0000 X-SWARE-Spam-Status: No, hits=-5.7 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from cantor2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 07 Feb 2012 12:05:38 +0000 Received: from relay1.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id B45CA8FD0F for ; Tue, 7 Feb 2012 13:05:36 +0100 (CET) Date: Tue, 7 Feb 2012 13:05:36 +0100 (CET) From: Richard Guenther To: gcc-patches@gcc.gnu.org Subject: [PATCH] Avoid excessive newline in -alias dumps Message-ID: User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) 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 Committed as obvious. Richard. 2012-02-07 Richard Guenther * gimple-pretty-print.c (dump_gimple_phi): Avoid excessive newline in -alias dumps. Index: gcc/gimple-pretty-print.c =================================================================== --- gcc/gimple-pretty-print.c (revision 183959) +++ gcc/gimple-pretty-print.c (working copy) @@ -1595,9 +1595,11 @@ dump_gimple_phi (pretty_printer *buffer, pp_points_to_solution (buffer, &pi->pt); newline_and_indent (buffer, spc); if (pi->align != 1) - pp_printf (buffer, "# ALIGN = %u, MISALIGN = %u", - pi->align, pi->misalign); - newline_and_indent (buffer, spc); + { + pp_printf (buffer, "# ALIGN = %u, MISALIGN = %u", + pi->align, pi->misalign); + newline_and_indent (buffer, spc); + } pp_string (buffer, "# "); }