[PATCH] Fix lto_section_name array

Andi Kleen andi@firstfloor.org
Thu Jul 8 19:56:00 GMT 2010


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



More information about the Gcc-patches mailing list