From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 53815 invoked by alias); 7 Oct 2016 08:25:06 -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 53787 invoked by uid 89); 7 Oct 2016 08:25:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_PASS autolearn=ham version=3.3.2 spammy=tgt X-HELO: mx2.suse.de Received: from mx2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 07 Oct 2016 08:24:54 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id DF4B2AC29; Fri, 7 Oct 2016 08:24:52 +0000 (UTC) Subject: [PATCH] Fix profiled bootstrap (part 2) To: GCC Patches References: Cc: Martin Sebor , Jakub Jelinek From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Message-ID: <00e6e1c0-03e0-6d65-5be7-950db8bea6c2@suse.cz> Date: Fri, 07 Oct 2016 08:25:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/mixed; boundary="------------7552A763E7EE356772E3F731" X-IsSubscribed: yes X-SW-Source: 2016-10/txt/msg00452.txt.bz2 This is a multi-part message in MIME format. --------------7552A763E7EE356772E3F731 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-length: 124 There's one more hunk needed to build profiledbootstrap. Hope it's obvious, I'm going to install the patch. Thanks, Martin --------------7552A763E7EE356772E3F731 Content-Type: text/x-patch; name="0001-Fix-profiled-bootstrap-part-2.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-Fix-profiled-bootstrap-part-2.patch" Content-length: 717 >From eab203805280062a2733ffcc758f5282a8163905 Mon Sep 17 00:00:00 2001 From: marxin Date: Thu, 6 Oct 2016 19:33:39 +0200 Subject: [PATCH] Fix profiled bootstrap (part 2) gcc/cp/ChangeLog: 2016-10-06 Martin Liska * lambda.c (maybe_add_lambda_conv_op): Set default value. --- gcc/cp/lambda.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cp/lambda.c b/gcc/cp/lambda.c index cd32226..d4284bf 100644 --- a/gcc/cp/lambda.c +++ b/gcc/cp/lambda.c @@ -967,7 +967,7 @@ maybe_add_lambda_conv_op (tree type) { int ix = 0; tree src = DECL_CHAIN (DECL_ARGUMENTS (callop)); - tree tgt; + tree tgt = NULL; while (src) { -- 2.9.2 --------------7552A763E7EE356772E3F731--