2011-01-25 Mathieu Lacage <mathieu.lacage@inria.fr>

PR/symtab 11766:
	* gdb/objfiles.h (struct objfile) <addr_low>: New field.
	* gdb/solib.c (solib_read_symbols): Check for addr_low in
	equality test for objfile, initialize addr_low if needed.
This commit is contained in:
Thiago Jung Bauermann 2011-01-26 01:55:19 +00:00
parent f829b0eccc
commit e4f6d2ecc4
3 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2011-01-25 Mathieu Lacage <mathieu.lacage@inria.fr>
PR/symtab 11766:
* gdb/objfiles.h (struct objfile) <addr_low>: New field.
* gdb/solib.c (solib_read_symbols): Check for addr_low in
equality test for objfile, initialize addr_low if needed.
2011-01-25 Pedro Alves <pedro@codesourcery.com>
* tui/tui-regs.c (tui_register_format): Remove dead code.

View File

@ -194,6 +194,8 @@ struct objfile
char *name;
CORE_ADDR addr_low;
/* Some flag bits for this objfile. */
unsigned short flags;

View File

@ -638,7 +638,8 @@ solib_read_symbols (struct so_list *so, int flags)
/* Have we already loaded this shared object? */
ALL_OBJFILES (so->objfile)
{
if (strcmp (so->objfile->name, so->so_name) == 0)
if (strcmp (so->objfile->name, so->so_name) == 0
&& so->objfile->addr_low == so->addr_low)
break;
}
if (so->objfile != NULL)
@ -648,6 +649,7 @@ solib_read_symbols (struct so_list *so, int flags)
so->sections_end);
so->objfile = symbol_file_add_from_bfd (so->abfd,
flags, sap, OBJF_SHARED);
so->objfile->addr_low = so->addr_low;
free_section_addr_info (sap);
}