This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Google 4.7 Obvious] Fix trailing enumerator comma


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]