This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[Google 4.7 Obvious] Fix trailing enumerator comma
- From: Sterling Augustine <saugustine at google dot com>
- To: gcc-patches <gcc-patches at gcc dot gnu dot org>
- Date: Mon, 20 Aug 2012 17:37:05 -0700
- Subject: [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