From patchwork Tue Jul 27 14:51:45 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andi Kleen X-Patchwork-Id: 60144 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 AD85FB6EF3 for ; Thu, 29 Jul 2010 00:10:00 +1000 (EST) Received: (qmail 9026 invoked by alias); 28 Jul 2010 14:09:57 -0000 Received: (qmail 9011 invoked by uid 22791); 28 Jul 2010 14:09:56 -0000 X-SWARE-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL, BAYES_00, DATE_IN_PAST_12_24, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from one.firstfloor.org (HELO one.firstfloor.org) (213.235.205.2) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 28 Jul 2010 14:09:47 +0000 Received: from basil.firstfloor.org (p5B3C94DA.dip0.t-ipconnect.de [91.60.148.218]) by one.firstfloor.org (Postfix) with ESMTP id 6AAE8A0000B for ; Wed, 28 Jul 2010 16:09:44 +0200 (CEST) Received: by basil.firstfloor.org (Postfix, from userid 1000) id BFF5CB2510; Tue, 27 Jul 2010 16:51:45 +0200 (CEST) Date: Tue, 27 Jul 2010 16:51:45 +0200 From: Andi Kleen To: gcc-patches@gcc.gnu.org Subject: [PATCH] LTO: Remove left over debugging fprintf in lto-plugin Message-ID: <20100727145145.GA32159@basil.fritz.box> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) 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 LTO: Remove left over debugging fprintf in lto-plugin I forgot a debugging fprintf in the lto plugin changes. Remove that. I guess the patch is obvious? Passed bootstrap and test suite run x86_64-linux -Andi 2010-07-27 Andi Kleen * lto-plugin.c (translate): Remove debug fprintf. Index: lto-plugin/lto-plugin.c =================================================================== --- lto-plugin/lto-plugin.c (revision 162566) +++ lto-plugin/lto-plugin.c (working copy) @@ -212,8 +212,6 @@ data = parse_table_entry (data, &syms[n], &aux[n]); } - fprintf (stderr, "n = %d len = %d end-data=%lu\n", n, len, - (unsigned long) (end - data)); assert(n < len); out->nsyms = n;