From patchwork Thu Jul 8 19:56:42 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Fix lto_section_name array Date: Thu, 08 Jul 2010 09:56:42 -0000 From: Andi Kleen X-Patchwork-Id: 58276 Message-Id: <20100708195642.GA19499@basil.fritz.box> To: 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",