diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/symmisc.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bc73b97..0badb87 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 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> + Fix gdb.fortran/common-block.exp crash in PIE mode. * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use LOC_COMMON_BLOCK. diff --git a/gdb/symmisc.c b/gdb/symmisc.c index ce0bd20..df77e79 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -675,6 +675,7 @@ maintenance_print_msymbols (char *args, int from_tty) { QUIT; if (symname == NULL || (!stat (objfile->name, &obj_st) + && sym_st.st_dev == obj_st.st_dev && sym_st.st_ino == obj_st.st_ino)) dump_msymbols (objfile, outfile); } |