mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-04-24 14:53:34 +08:00
Show type- and function-domain in maint print psymbols
I neglected to update "maint print psymbols" when adding TYPE_DOMAIN and FUNCTION_DOMAIN. This would have been mildly helpful when debugging a series I am working on. This patch corrects the oversight. Approved-By: Andrew Burgess <aburgess@redhat.com>
This commit is contained in:
parent
07040558e6
commit
47df9f43ef
@ -527,6 +527,12 @@ print_partial_symbols (struct gdbarch *gdbarch, struct objfile *objfile,
|
||||
case COMMON_BLOCK_DOMAIN:
|
||||
gdb_puts ("common block domain, ", outfile);
|
||||
break;
|
||||
case TYPE_DOMAIN:
|
||||
gdb_puts ("type domain, ", outfile);
|
||||
break;
|
||||
case FUNCTION_DOMAIN:
|
||||
gdb_puts ("function domain, ", outfile);
|
||||
break;
|
||||
default:
|
||||
gdb_puts ("<invalid domain>, ", outfile);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user