From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11296 invoked by alias); 25 Dec 2015 01:31:10 -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 11259 invoked by uid 89); 25 Dec 2015 01:31:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.6 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=hiradityamsncom, hiraditya@msn.com, dominated, Hx-languages-length:1001 X-HELO: BLU004-OMC3S9.hotmail.com Received: from blu004-omc3s9.hotmail.com (HELO BLU004-OMC3S9.hotmail.com) (65.55.116.84) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA256 encrypted) ESMTPS; Fri, 25 Dec 2015 01:31:09 +0000 Received: from BLU437-SMTP44 ([65.55.116.73]) by BLU004-OMC3S9.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Thu, 24 Dec 2015 17:31:07 -0800 X-TMN: [94Fsen7IPpnnZ7fZGLBDV6QvKSyOr8KL] Message-ID: From: hiraditya To: hiraditya@msn.com CC: sebpop@gmail.com, gcc-patches@gcc.gnu.org Subject: [PATCH] [graphite] PR67842 Remove dead code. Date: Fri, 25 Dec 2015 01:31:00 -0000 MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2015-12/txt/msg02132.txt.bz2 This check is not relevant anymore. Removing. gcc/ChangeLog: 2015-12-24 hiraditya * sese.h (bb_in_region): Remove dead code. --- gcc/sese.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/gcc/sese.h b/gcc/sese.h index 99df354..f7e5570 100644 --- a/gcc/sese.h +++ b/gcc/sese.h @@ -135,20 +135,6 @@ sese_nb_params (sese_info_p region) static inline bool bb_in_region (const_basic_block bb, const_basic_block entry, const_basic_block exit) { - /* FIXME: PR67842. */ -#if 0 - if (flag_checking) - { - edge e; - edge_iterator ei; - - /* Check that there are no edges coming in the region: all the - predecessors of EXIT are dominated by ENTRY. */ - FOR_EACH_EDGE (e, ei, exit->preds) - gcc_assert (dominated_by_p (CDI_DOMINATORS, e->src, entry)); - } -#endif - return dominated_by_p (CDI_DOMINATORS, bb, entry) && !(dominated_by_p (CDI_DOMINATORS, bb, exit) && !dominated_by_p (CDI_DOMINATORS, entry, exit)); -- 2.1.4