From patchwork Mon Oct 10 15:31:49 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Biener X-Patchwork-Id: 118758 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 4385EB70FE for ; Tue, 11 Oct 2011 02:32:13 +1100 (EST) Received: (qmail 26381 invoked by alias); 10 Oct 2011 15:32:10 -0000 Received: (qmail 26370 invoked by uid 22791); 10 Oct 2011 15:32:09 -0000 X-SWARE-Spam-Status: No, hits=-3.5 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from cantor2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 10 Oct 2011 15:31:51 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.221.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id AD6C08D167 for ; Mon, 10 Oct 2011 17:31:49 +0200 (CEST) Date: Mon, 10 Oct 2011 17:31:49 +0200 (CEST) From: Richard Guenther To: gcc-patches@gcc.gnu.org Subject: [PATCH] Verify stuff after IPA split Message-ID: User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Bootstrapped on x86_64-unknown-linux-gnu, testing in progress. Richard. 2011-10-10 Richard Guenther * ipa-split.c (pass_split_functions): Add verification TODOs. (pass_feedback_split_functions): Likewise. Index: gcc/ipa-split.c =================================================================== --- gcc/ipa-split.c (revision 179738) +++ gcc/ipa-split.c (working copy) @@ -1451,7 +1451,7 @@ struct gimple_opt_pass pass_split_functi 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - 0 /* todo_flags_finish */ + TODO_verify_all /* todo_flags_finish */ } }; @@ -1492,6 +1492,6 @@ struct gimple_opt_pass pass_feedback_spl 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - 0 /* todo_flags_finish */ + TODO_verify_all /* todo_flags_finish */ } };