diff options
author | Tom Tromey <tromey@redhat.com> | 2011-07-27 14:45:37 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-07-27 14:45:37 +0000 |
commit | 24d3216fd914347928f66a31c5b3be7c98e90be8 (patch) | |
tree | 13fa18ab74e50457dbe6474cfd28bac94599518a /gdb/xcoffread.c | |
parent | 088b3cd0cecf4795b1b58224c03bcffeebe2dc73 (diff) | |
download | gdb-24d3216fd914347928f66a31c5b3be7c98e90be8.zip gdb-24d3216fd914347928f66a31c5b3be7c98e90be8.tar.gz gdb-24d3216fd914347928f66a31c5b3be7c98e90be8.tar.bz2 |
* xcoffread.c (dwarf2_xcoff_names): Add 'macro' and 'sentinel'
entries.
* symfile.h (struct dwarf2_debug_sections) <sentinel>: New field.
* dwarf2read.c (dwarf2_elf_names): Add sentinel entry.
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r-- | gdb/xcoffread.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index 0c4cbd1..d7760ee 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -160,12 +160,14 @@ static const struct dwarf2_debug_sections dwarf2_xcoff_names = { { ".dwline", NULL }, { ".dwloc", NULL }, { NULL, NULL }, /* debug_macinfo */ + { NULL, NULL }, /* debug_macro */ { ".dwstr", NULL }, { ".dwrnges", NULL }, { NULL, NULL }, /* debug_types */ { ".dwframe", NULL }, { NULL, NULL }, /* eh_frame */ - { NULL, NULL } /* gdb_index */ + { NULL, NULL }, /* gdb_index */ + 23 }; static void |