From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 128380 invoked by alias); 2 Jul 2015 15:42:20 -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 128368 invoked by uid 89); 2 Jul 2015 15:42:20 -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,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 X-HELO: out5-smtp.messagingengine.com Received: from out5-smtp.messagingengine.com (HELO out5-smtp.messagingengine.com) (66.111.4.29) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 02 Jul 2015 15:42:19 +0000 Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id E40C120D08 for ; Thu, 2 Jul 2015 11:42:15 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute6.internal (MEProxy); Thu, 02 Jul 2015 11:42:15 -0400 Received: from [129.132.134.32] (inf-13.inf.ethz.ch [129.132.134.32]) by mail.messagingengine.com (Postfix) with ESMTPA id 58885C00295; Thu, 2 Jul 2015 11:42:15 -0400 (EDT) Message-ID: <55955BD6.1020407@grosser.es> Date: Thu, 02 Jul 2015 15:42:00 -0000 From: Tobias Grosser User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Aditya K , Sebastian Pop CC: GCC Patches Subject: Re: [PATCH] Discard Scops for which entry==exit References: <1435608255-10186-1-git-send-email-hiraditya@msn.com>,,<559232F5.4040206@grosser.es> ,<5594EDF5.9030404@grosser.es> In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2015-07/txt/msg00144.txt.bz2 On 07/02/2015 05:37 PM, Aditya K wrote: > A test case (gcc/testsuite/gcc.dg/graphite/pr18792.c) came up when we removed `graphite-scop-detection.c:limit_scops'. > The test case is a scop where entry==exit, > > BB5 (*#) -> BB6 (#); > BB6 -> BB5; > > In this case BB2 is out of the scop. This is basically an empty (infinite) loop. LGTM. Tobias