From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13093 invoked by alias); 3 Jun 2011 17:29:15 -0000 Received: (qmail 13085 invoked by uid 22791); 3 Jun 2011 17:29:15 -0000 X-SWARE-Spam-Status: No, hits=1.9 required=5.0 tests=AWL,BAYES_50,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.44.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 03 Jun 2011 17:29:00 +0000 Received: from wpaz21.hot.corp.google.com (wpaz21.hot.corp.google.com [172.24.198.85]) by smtp-out.google.com with ESMTP id p53HSxwb007718; Fri, 3 Jun 2011 10:28:59 -0700 Received: from gchare.mtv.corp.google.com (gchare.mtv.corp.google.com [172.18.111.122]) by wpaz21.hot.corp.google.com with ESMTP id p53HSvXx004933; Fri, 3 Jun 2011 10:28:58 -0700 Received: by gchare.mtv.corp.google.com (Postfix, from userid 138564) id 85A491C3799; Fri, 3 Jun 2011 10:28:57 -0700 (PDT) To: reply@codereview.appspotmail.com, crowl@google.com, dnovillo@google.com, gcc-patches@gcc.gnu.org Subject: [pph] Removing unused timevars following pph instrumentation removal patch (issue4568053) Message-Id: <20110603172857.85A491C3799@gchare.mtv.corp.google.com> Date: Fri, 03 Jun 2011 17:29:00 -0000 From: gchare@google.com (Gabriel Charette) X-System-Of-Record: true X-IsSubscribed: yes 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 X-SW-Source: 2011-06/txt/msg00257.txt.bz2 Removed the 3 PPH timevars used in pph instrumentation. Those are not used anymore following the instrumentation removal patch. Bootstrap build and regression testing were successful. 2011-06-03 Gabriel Charette * timevar.def (TV_PPH_CACHE_IN): Remove. (TV_PPH_CACHE_OUT): Remove. (TV_PPH_MANAGE): Remove. Index: timevar.def =================================================================== --- timevar.def (revision 174568) +++ timevar.def (working copy) @@ -69,11 +69,6 @@ DEFTIMEVAR (TV_PTH_SKIP_TOKENS , "PTH skip cached tokens") DEFTIMEVAR (TV_PTH_INIT , "PTH initialization") -/* Time spent handling PPH state. */ -DEFTIMEVAR (TV_PPH_CACHE_IN , "PPH cache in") -DEFTIMEVAR (TV_PPH_CACHE_OUT , "PPH cache out") -DEFTIMEVAR (TV_PPH_MANAGE , "PPH bookkeeping") - DEFTIMEVAR (TV_CGRAPH , "callgraph construction") DEFTIMEVAR (TV_CGRAPHOPT , "callgraph optimization") DEFTIMEVAR (TV_VARPOOL , "varpool construction") -- This patch is available for review at http://codereview.appspot.com/4568053