[gdb/symtab] Handle named DW_TAG_unspecified_type DIE
authorTom de Vries <tdevries@suse.de>
Fri, 16 Sep 2022 15:14:34 +0000 (17:14 +0200)
committerTom de Vries <tdevries@suse.de>
Fri, 16 Sep 2022 15:14:34 +0000 (17:14 +0200)
commit80eaec735e36598a312f9b184ee4f32bd6c0bab4
tree5aeb9cce6ab1261c9fc4484631cfc13ac78e0585
parentff84aaf3e338702f982274ffb79e93562d05070c
[gdb/symtab] Handle named DW_TAG_unspecified_type DIE

With the test-case included in the patch, we run into:
...
(gdb) info types -q std::nullptr_t^M
During symbol reading: unsupported tag: 'DW_TAG_unspecified_type'^M
^M
File /usr/include/c++/7/x86_64-suse-linux/bits/c++config.h:^M
2198:   typedef decltype(nullptr) std::nullptr_t;^M
(gdb) FAIL: gdb.dwarf2/nullptr_t.exp: info types -q std::nullptr_t \
  without complaint
...

Fix the complaint by handling DW_TAG_unspecified_type in new_symbol, and verify
in the test-case using "maint print symbols" that the symbol exists.

Tested on x86_64-linux, with gcc 7.5.0 and clang 13.0.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=17271
gdb/dwarf2/read.c
gdb/testsuite/gdb.dwarf2/nullptr_t.cc [new file with mode: 0644]
gdb/testsuite/gdb.dwarf2/nullptr_t.exp [new file with mode: 0644]