diff mbox

Fix lto_section_name array

Message ID 20100708195642.GA19499@basil.fritz.box
State New
Headers show

Commit Message

Andi Kleen July 8, 2010, 7:56 p.m. UTC
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 <ak@linux.intel.com>
	
	* lto/lto-section-in.c: (lto_section_name) Add missing comma.
diff mbox

Patch

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",