mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
gdb/
* symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
|
* symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
|
||||||
|
|
||||||
2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
|
2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
Fix gdb.fortran/common-block.exp crash in PIE mode.
|
Fix gdb.fortran/common-block.exp crash in PIE mode.
|
||||||
|
@ -675,6 +675,7 @@ maintenance_print_msymbols (char *args, int from_tty)
|
|||||||
{
|
{
|
||||||
QUIT;
|
QUIT;
|
||||||
if (symname == NULL || (!stat (objfile->name, &obj_st)
|
if (symname == NULL || (!stat (objfile->name, &obj_st)
|
||||||
|
&& sym_st.st_dev == obj_st.st_dev
|
||||||
&& sym_st.st_ino == obj_st.st_ino))
|
&& sym_st.st_ino == obj_st.st_ino))
|
||||||
dump_msymbols (objfile, outfile);
|
dump_msymbols (objfile, outfile);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user