From patchwork Wed Jun 22 23:03:26 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gab Charette X-Patchwork-Id: 101560 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 304D6B6F68 for ; Thu, 23 Jun 2011 09:03:50 +1000 (EST) Received: (qmail 25817 invoked by alias); 22 Jun 2011 23:03:48 -0000 Received: (qmail 25805 invoked by uid 22791); 22 Jun 2011 23:03:47 -0000 X-SWARE-Spam-Status: No, hits=-1.1 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, SPF_HELO_PASS, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (74.125.121.67) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 22 Jun 2011 23:03:30 +0000 Received: from hpaq6.eem.corp.google.com (hpaq6.eem.corp.google.com [172.25.149.6]) by smtp-out.google.com with ESMTP id p5MN3SdW018964; Wed, 22 Jun 2011 16:03:28 -0700 Received: from gchare.mtv.corp.google.com (gchare.mtv.corp.google.com [172.18.111.122]) by hpaq6.eem.corp.google.com with ESMTP id p5MN3QW2031100; Wed, 22 Jun 2011 16:03:26 -0700 Received: by gchare.mtv.corp.google.com (Postfix, from userid 138564) id 19FDB1C0C7C; Wed, 22 Jun 2011 16:03:26 -0700 (PDT) To: reply@codereview.appspotmail.com, crowl@google.com, dnovillo@google.com, gcc-patches@gcc.gnu.org Subject: [pph] Fixed extra space typos in pph-streamer-out.c (issue4663041) Message-Id: <20110622230326.19FDB1C0C7C@gchare.mtv.corp.google.com> Date: Wed, 22 Jun 2011 16:03:26 -0700 (PDT) From: gchare@google.com (Gabriel Charette) X-System-Of-Record: true 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 I've had these two small changes around for a while after making a search and replace for extra spaces in my own added code last week. Tested with bootstrap and pph regression testing, you never know ;) 2011-06-22 Gabriel Charette * gcc/cp/pph-streamer-out.c (pph_out_lang_specific): Removed extra space. (pph_write_tree): Removed extra space. --- This patch is available for review at http://codereview.appspot.com/4663041 diff --git a/gcc/cp/pph-streamer-out.c b/gcc/cp/pph-streamer-out.c index 32851a4..f219cef 100644 --- a/gcc/cp/pph-streamer-out.c +++ b/gcc/cp/pph-streamer-out.c @@ -714,7 +714,7 @@ pph_out_lang_specific (pph_stream *stream, tree decl, bool ref_p) ld = DECL_LANG_SPECIFIC (decl); if (!pph_out_start_record (stream, ld)) return; - + /* Write all the fields in lang_decl_base. */ ldb = &ld->u.base; pph_out_ld_base (stream, ldb); @@ -1166,7 +1166,7 @@ pph_write_tree (struct output_block *ob, tree expr, bool ref_p) TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (expr), ref_p); break; - case TEMPLATE_PARM_INDEX: + case TEMPLATE_PARM_INDEX: { template_parm_index *p = TEMPLATE_PARM_INDEX_CAST (expr); pph_out_tree_common (stream, expr, ref_p);