From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 48047 invoked by alias); 3 Sep 2015 09:20:27 -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 48037 invoked by uid 89); 3 Sep 2015 09:20:27 -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,SPF_HELO_PASS,T_RP_MATCHES_RCVD 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; Thu, 03 Sep 2015 09:20:26 +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 49BEDC0A5144; Thu, 3 Sep 2015 09:20:25 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-116-44.ams2.redhat.com [10.36.116.44]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t839KNNa007401 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 3 Sep 2015 05:20:24 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id t839KM8M013712; Thu, 3 Sep 2015 11:20:22 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id t839KL2x013711; Thu, 3 Sep 2015 11:20:21 +0200 Date: Thu, 03 Sep 2015 09:40:00 -0000 From: Jakub Jelinek To: Tom de Vries Cc: GCC Patches Subject: Re: [PR65637][PATCH][5/5] Handle 2 preds for fin_bb in expand_omp_for_static_chunk Message-ID: <20150903092021.GN1847@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <552E6341.4040401@mentor.com> <552E6643.8090002@mentor.com> <55E44271.1050403@mentor.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <55E44271.1050403@mentor.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-09/txt/msg00228.txt.bz2 On Mon, Aug 31, 2015 at 02:02:57PM +0200, Tom de Vries wrote: > 2015-08-31 Tom de Vries > > PR tree-optimization/65637 > * omp-low.c (expand_omp_for_static_chunk): Handle case that fin_bb has 2 > predecessors. Ok. > > * gcc.dg/autopar/reduc-3-chunk-size.c: New test. But for the testcase similarly to previous patches, I'd call it reduc-4.c and #include "reduc-3.c" instead of duplicating it. Jakub