diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2007-10-25 11:30:55 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2007-10-25 11:30:55 +0000 |
commit | ad842144541f614986b8ac5b4db4bfba733f0290 (patch) | |
tree | e4bc0d0b138350abbcb19baab026bb2f2b383a8d /gdb/Makefile.in | |
parent | 24a836bd61e90340f0fdd6e77c00b61eb2f579b1 (diff) | |
download | gdb-ad842144541f614986b8ac5b4db4bfba733f0290.zip gdb-ad842144541f614986b8ac5b4db4bfba733f0290.tar.gz gdb-ad842144541f614986b8ac5b4db4bfba733f0290.tar.bz2 |
PR exp/1926
* infcmd.c (registers_info): Check for a user register before
calling target's gdbarch_print_registers_info(). If found to be
so, extract the implicit value of user register and call
print_scalar_formatted().
* Makefile.in: (infcmd.o): Add $(user_regs_h).
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 8fc1d8a..36ed948 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2208,7 +2208,8 @@ infcmd.o: infcmd.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ $(symfile_h) $(gdbcore_h) $(target_h) $(language_h) $(symfile_h) \ $(objfiles_h) $(completer_h) $(ui_out_h) $(event_top_h) \ $(parser_defs_h) $(regcache_h) $(reggroups_h) $(block_h) \ - $(solib_h) $(gdb_assert_h) $(observer_h) $(target_descriptions_h) + $(solib_h) $(gdb_assert_h) $(observer_h) $(target_descriptions_h) \ + $(user_regs_h) inf-loop.o: inf-loop.c $(defs_h) $(inferior_h) $(target_h) $(event_loop_h) \ $(event_top_h) $(inf_loop_h) $(remote_h) $(exceptions_h) inflow.o: inflow.c $(defs_h) $(frame_h) $(inferior_h) $(command_h) \ |