[Google 4.7 Obvious] Fix trailing enumerator comma

Sterling Augustine saugustine@google.com
Tue Aug 21 00:37:00 GMT 2012


My last change to google 4.7 that included gdb/gdb-index.h as it
exists in binutils, but it included a trailing comma in an enumerator.
I have checked in as obvious the patch below which eliminates the
trailing comma.

Sterling


 2012-08-20  Sterling Augustine  <saugustine@google.com>

        * gdb/gdb-index.h: Remove comma from last enum.


--- branches/google/gcc-4_7/include/gdb/gdb-index.h	2012/08/20 18:23:19	190539
+++ branches/google/gcc-4_7/include/gdb/gdb-index.h	2012/08/20 23:05:44	190549
@@ -68,7 +68,7 @@
      Give the unused bits a value so gdb will print them sensibly.  */
   GDB_INDEX_SYMBOL_KIND_UNUSED5 = 5,
   GDB_INDEX_SYMBOL_KIND_UNUSED6 = 6,
-  GDB_INDEX_SYMBOL_KIND_UNUSED7 = 7,
+  GDB_INDEX_SYMBOL_KIND_UNUSED7 = 7
 } gdb_index_symbol_kind;

 #define GDB_INDEX_SYMBOL_KIND_SHIFT 28



More information about the Gcc-patches mailing list