From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30296 invoked by alias); 11 Aug 2015 15:31:54 -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 30287 invoked by uid 89); 11 Aug 2015 15:31:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=no 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; Tue, 11 Aug 2015 15:31:48 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id E5F7919CB82; Tue, 11 Aug 2015 15:31:46 +0000 (UTC) Received: from localhost.localdomain (ovpn-113-104.phx2.redhat.com [10.3.113.104]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t7BFVkGc024948; Tue, 11 Aug 2015 11:31:46 -0400 Subject: Re: Fix two more memory leaks in threader To: Uros Bizjak , "gcc-patches@gcc.gnu.org" References: From: Jeff Law Message-ID: <55CA1561.4030102@redhat.com> Date: Tue, 11 Aug 2015 15:31:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-08/txt/msg00524.txt.bz2 On 08/11/2015 12:16 AM, Uros Bizjak wrote: > Hello! > > +2015-08-03 Jeff Law > + > + PR middle-end/66314 > + PR gcov-profile/66899 > + * tree-ssa-threadupdate.c (mark_threaded_blocks): Correctly > + iterate over the jump threading paths when an element in the > + jump threading paths array is eliminated. > + > 2015-08-03 Segher Boessenkool > > * Makefile.in (OBJS): Put gimple-match.o and generic-match.o first. > diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog > index a403767..0a841b5 100644 > --- a/gcc/testsuite/ChangeLog > +++ b/gcc/testsuite/ChangeLog > @@ -1,3 +1,10 @@ > +2015-08-03 Jeff Law > + > + PR middle-end/66314 > + PR gcov-profile/66899 > + * gcc.dg/pr66899.c: New test. > + * gcc.dg/pr66314.c: New test. > > gcc.dg/pr66314.c testcase should go into gcc.dg/asan directory. > Targets where -fsanitize=address or -fsanitize=kernel-address are not > supported now emit warning about unsupported feature for the mentioned > testcase. Yes. It's on the TODO list -- I think Andreas pointed that out about a week ago. Jeff