From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 119979 invoked by alias); 11 Aug 2015 06:16:52 -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 119964 invoked by uid 89); 11 Aug 2015 06:16:51 -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,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-oi0-f49.google.com Received: from mail-oi0-f49.google.com (HELO mail-oi0-f49.google.com) (209.85.218.49) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Tue, 11 Aug 2015 06:16:49 +0000 Received: by oio137 with SMTP id 137so97563526oio.0 for ; Mon, 10 Aug 2015 23:16:47 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.202.183.84 with SMTP id h81mr21818079oif.43.1439273807411; Mon, 10 Aug 2015 23:16:47 -0700 (PDT) Received: by 10.60.58.41 with HTTP; Mon, 10 Aug 2015 23:16:47 -0700 (PDT) Date: Tue, 11 Aug 2015 06:16:00 -0000 Message-ID: Subject: Re: Fix two more memory leaks in threader From: Uros Bizjak To: "gcc-patches@gcc.gnu.org" Cc: Jeff Law Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-08/txt/msg00492.txt.bz2 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. Uros.