From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21051 invoked by alias); 22 Apr 2015 12:17:55 -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 21042 invoked by uid 89); 22 Apr 2015 12:17:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: nikam.ms.mff.cuni.cz Received: from nikam.ms.mff.cuni.cz (HELO nikam.ms.mff.cuni.cz) (195.113.20.16) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 22 Apr 2015 12:17:54 +0000 Received: by nikam.ms.mff.cuni.cz (Postfix, from userid 16202) id D29D8543A43; Wed, 22 Apr 2015 14:17:49 +0200 (CEST) Date: Wed, 22 Apr 2015 12:17:00 -0000 From: Jan Hubicka To: "H.J. Lu" Cc: Jan Hubicka , Richard Guenther , GCC Patches Subject: Re: Add DSE to early passes Message-ID: <20150422121749.GB76372@kam.mff.cuni.cz> References: <20150413100117.GA61490@kam.mff.cuni.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2015-04/txt/msg01291.txt.bz2 > > @@ -42,6 +42,6 @@ bool f(I a, I b, I c, I d) { > > // This works only if everything is inlined into 'f'. > > > > // { dg-final { scan-tree-dump-times ";; Function" 1 "fre2" } } > > -// { dg-final { scan-tree-dump-times "free" 19 "fre2" } } > > +// { dg-final { scan-tree-dump-times "free" 18 "fre2" } } > > // { dg-final { scan-tree-dump-times "unreachable" 11 "fre2" } } > > // { dg-final { cleanup-tree-dump "fre2" } } > > I got > > FAIL: g++.dg/tree-ssa/pr61034.C -std=gnu++11 scan-tree-dump-times > fre2 "free" 18 > FAIL: g++.dg/tree-ssa/pr61034.C -std=gnu++14 scan-tree-dump-times > fre2 "free" 18 > FAIL: g++.dg/tree-ssa/pr61034.C -std=gnu++98 scan-tree-dump-times > fre2 "free" 18 > > on Linux/x86. Hmm, I tested on pcc64, but now I see the same failure on x86-64. Perhaps this testcase became target sensitive? Richard, does the count really matter? Honza