diff options
author | Tom de Vries <tdevries@suse.de> | 2021-02-05 17:47:07 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2021-02-05 17:47:07 +0100 |
commit | e77b0004dd114d6ddf3bb92b521b2854341f3f85 (patch) | |
tree | 590735e146c9c750c2395fa55c42160dcfcc21f2 /gdb | |
parent | 0e857c82883cff04ccc8868762c78b0e94ccde91 (diff) | |
download | gdb-e77b0004dd114d6ddf3bb92b521b2854341f3f85.zip gdb-e77b0004dd114d6ddf3bb92b521b2854341f3f85.tar.gz gdb-e77b0004dd114d6ddf3bb92b521b2854341f3f85.tar.bz2 |
[gdb/symtab] Handle DW_TAG_type_unit in process_psymtab_comp_unit
When running test-case gdb.cp/cpexprs-debug-types.exp with target board
unix/gdb:debug_flags=-gdwarf-5, I run into:
...
(gdb) file cpexprs-debug-types^M
Reading symbols from cpexprs-debug-types...^M
ERROR: Couldn't load cpexprs-debug-types into GDB (eof).
ERROR: Couldn't send delete breakpoints to GDB.
ERROR: GDB process no longer exists
GDB process exited with wait status 23054 exp9 0 0 CHILDKILLED SIGABRT SIGABRT
...
We're running into this abort in process_psymtab_comp_unit:
...
switch (reader.comp_unit_die->tag)
{
case DW_TAG_compile_unit:
this_cu->unit_type = DW_UT_compile;
break;
case DW_TAG_partial_unit:
this_cu->unit_type = DW_UT_partial;
break;
default:
abort ();
}
...
because reader.comp_unit_die->tag == DW_TAG_type_unit.
Fix this by adding a DW_TAG_type_unit case.
Tested on x86_64-linux.
gdb/ChangeLog:
2021-02-05 Tom de Vries <tdevries@suse.de>
PR symtab/27333
* dwarf2/read.c (process_psymtab_comp_unit): Handle DW_TAG_type_unit.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/dwarf2/read.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e4a5ed8..8c2953a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2021-02-05 Tom de Vries <tdevries@suse.de> + PR symtab/27333 + * dwarf2/read.c (process_psymtab_comp_unit): Handle DW_TAG_type_unit. + +2021-02-05 Tom de Vries <tdevries@suse.de> + PR breakpoints/27313 * break-catch-syscall.c (catch_syscall_split_args): Reject negative syscall numbers. diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index f60e418..3f60ce6 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -7836,6 +7836,9 @@ process_psymtab_comp_unit (dwarf2_per_cu_data *this_cu, case DW_TAG_partial_unit: this_cu->unit_type = DW_UT_partial; break; + case DW_TAG_type_unit: + this_cu->unit_type = DW_UT_type; + break; default: abort (); } |