From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 108612 invoked by alias); 27 Nov 2015 19:02:49 -0000 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 Received: (qmail 108534 invoked by uid 89); 27 Nov 2015 19:02:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 27 Nov 2015 19:02:45 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id CD470A92; Fri, 27 Nov 2015 19:02:43 +0000 (UTC) Received: from redhat.com (ovpn-204-108.brq.redhat.com [10.40.204.108]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tARJ2cvJ009724 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 27 Nov 2015 14:02:42 -0500 Date: Fri, 27 Nov 2015 19:36:00 -0000 From: Marek Polacek To: GCC Patches , Joseph Myers , Jakub Jelinek , Richard Biener Subject: Re: [PATCH] Add save_expr langhook (PR c/68513) Message-ID: <20151127190238.GB28072@redhat.com> References: <20151127185531.GA28072@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151127185531.GA28072@redhat.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-SW-Source: 2015-11/txt/msg03398.txt.bz2 On Fri, Nov 27, 2015 at 07:55:43PM +0100, Marek Polacek wrote: > +/* The C version of the save_expr langhook. Either call save_expr or c_save_expr, > + depending on IN_LATE_PROCESSING. */ Consider this too long line fixed. Marek