From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14782 invoked by alias); 7 Jun 2013 17:36:21 -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 14769 invoked by uid 89); 7 Jun 2013 17:36:20 -0000 X-Spam-SWARE-Status: No, score=-6.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Fri, 07 Jun 2013 17:36:19 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r57HaINK016647 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 7 Jun 2013 13:36:18 -0400 Received: from [10.3.227.13] (vpn-227-13.phx2.redhat.com [10.3.227.13]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r57HaItw022536 for ; Fri, 7 Jun 2013 13:36:18 -0400 Message-ID: <1370626584.2126.18.camel@surprise> Subject: [PATCH] tree-into-ssa.c: make interesting_blocks static From: David Malcolm To: gcc-patches@gcc.gnu.org Date: Fri, 07 Jun 2013 17:36:00 -0000 Content-Type: multipart/mixed; boundary="=-r0bmzdKXNxfc/QHry9qU" Mime-Version: 1.0 X-Virus-Found: No X-SW-Source: 2013-06/txt/msg00424.txt.bz2 --=-r0bmzdKXNxfc/QHry9qU Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Content-length: 293 "interesting_blocks" is only used inside tree-into-ssa.c, so it can be made static. Successfully bootstrapped on x86_64-unknown-linux-gnu (using gcc-4.7.2-2.fc17.x86_64). OK for trunk? 2013-06-07 David Malcolm * tree-into-ssa.c (interesting_blocks): Make static. --=-r0bmzdKXNxfc/QHry9qU Content-Disposition: attachment; filename="make-interesting_blocks-static.patch" Content-Type: text/x-patch; name="make-interesting_blocks-static.patch"; charset="UTF-8" Content-Transfer-Encoding: 7bit Content-length: 487 Index: gcc/tree-into-ssa.c =================================================================== --- gcc/tree-into-ssa.c (revision 199816) +++ gcc/tree-into-ssa.c (working copy) @@ -93,7 +93,7 @@ the operations done on them are presence tests. */ static sbitmap new_ssa_names; -sbitmap interesting_blocks; +static sbitmap interesting_blocks; /* Set of SSA names that have been marked to be released after they were registered in the replacement table. They will be finally --=-r0bmzdKXNxfc/QHry9qU--