change solib-frv to use entry_point_address_query

This is just a minor cleanup in advance of some other changes, that
modifies solib-frv.c to use entry_point_address_query.  I don't have a
good way to test this but I think it is obviously correct.

2014-01-15  Tom Tromey  <tromey@redhat.com>

	* solib-frv.c (enable_break): Use entry_point_address_query.
This commit is contained in:
Tom Tromey 2013-12-31 02:47:37 -07:00
parent 33a97bbe01
commit d56e56aaa7
2 changed files with 8 additions and 5 deletions

View file

@ -1,3 +1,7 @@
2014-01-15 Tom Tromey <tromey@redhat.com>
* solib-frv.c (enable_break): Use entry_point_address_query.
2014-01-15 Omair Javaid <omair.javaid@linaro.org>
* NEWS: Add note on improved process record-replay on

View file

@ -721,6 +721,7 @@ static int
enable_break (void)
{
asection *interp_sect;
CORE_ADDR entry_point;
if (symfile_objfile == NULL)
{
@ -730,7 +731,7 @@ enable_break (void)
return 0;
}
if (!symfile_objfile->ei.entry_point_p)
if (!entry_point_address_query (&entry_point))
{
if (solib_frv_debug)
fprintf_unfiltered (gdb_stdlog,
@ -751,15 +752,13 @@ enable_break (void)
return 0;
}
create_solib_event_breakpoint (target_gdbarch (),
symfile_objfile->ei.entry_point);
create_solib_event_breakpoint (target_gdbarch (), entry_point);
if (solib_frv_debug)
fprintf_unfiltered (gdb_stdlog,
"enable_break: solib event breakpoint "
"placed at entry point: %s\n",
hex_string_custom (symfile_objfile->ei.entry_point,
8));
hex_string_custom (entry_point, 8));
return 1;
}