From patchwork Thu Jul 8 19:56:42 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andi Kleen X-Patchwork-Id: 58276 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 AC19BB6F07 for ; Fri, 9 Jul 2010 05:56:54 +1000 (EST) Received: (qmail 24817 invoked by alias); 8 Jul 2010 19:56:53 -0000 Received: (qmail 24803 invoked by uid 22791); 8 Jul 2010 19:56:52 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL, BAYES_00, 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; Thu, 08 Jul 2010 19:56:46 +0000 Received: from basil.firstfloor.org (p5B3C94D6.dip0.t-ipconnect.de [91.60.148.214]) by one.firstfloor.org (Postfix) with ESMTP id DE0191A980B1 for ; Thu, 8 Jul 2010 21:56:43 +0200 (CEST) Received: by basil.firstfloor.org (Postfix, from userid 1000) id 54087B2243; Thu, 8 Jul 2010 21:56:42 +0200 (CEST) Date: Thu, 8 Jul 2010 21:56:42 +0200 From: Andi Kleen To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix lto_section_name array Message-ID: <20100708195642.GA19499@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 Fix lto_section_name array Add a missing comma that messes up the later sections in the lto_section_name array. I don't have commit rights, so someone has to commit it for me. -Andi 2010-07-08 Andi Kleen * lto/lto-section-in.c: (lto_section_name) Add missing comma. diff --git a/gcc/lto-section-in.c b/gcc/lto-section-in.c index 7f4065e..72f1d3d 100644 --- a/gcc/lto-section-in.c +++ b/gcc/lto-section-in.c @@ -54,7 +54,7 @@ const char *lto_section_name[LTO_N_SECTION_TYPES] = "cgraph", "varpool", "refs", - "jump_funcs" + "jump_funcs", "ipa_pure_const", "ipa_reference", "symtab",