diff options
author | Daniel Jacobowitz <drow@false.org> | 2008-04-30 21:19:10 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2008-04-30 21:19:10 +0000 |
commit | 25492ce3f9c588d98d1284c04990491dc5056b15 (patch) | |
tree | e635fb5c3959dca6150e77d34cf4426eedc15fdf /gdb/Makefile.in | |
parent | 4a4e51493775a8b68df6fe1c1e364aefed060fb9 (diff) | |
download | gdb-25492ce3f9c588d98d1284c04990491dc5056b15.zip gdb-25492ce3f9c588d98d1284c04990491dc5056b15.tar.gz gdb-25492ce3f9c588d98d1284c04990491dc5056b15.tar.bz2 |
* trad-frame.c (struct trad_frame_cache): Rename next_frame to this_frame.
(trad_frame_cache_zalloc, trad_frame_alloc_saved_regs): Expect
this_frame.
(trad_frame_get_prev_register, trad_frame_get_register): Update signature.
* trad-frame.h (trad_frame_cache_zalloc, trad_frame_get_register)
(trad_frame_alloc_saved_regs, trad_frame_get_prev_register): Update
signature.
* tramp-frame.c (tramp_frame_cache, tramp_frame_start): Expect
this_frame.
(tramp_frame_this_id, tramp_frame_prev_register, tramp_frame_sniffer):
Update signature.
* tramp-frame.h (struct tramp_frame): Update signature of init.
* Makefile.in (trad-frame.o): Update.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 98ae558..7a3ce03 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2925,7 +2925,7 @@ tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(gdbtypes_h) \ $(block_h) $(dictionary_h) $(ax_h) $(ax_gdb_h) $(readline_h) \ $(readline_history_h) trad-frame.o: trad-frame.c $(defs_h) $(frame_h) $(trad_frame_h) \ - $(regcache_h) + $(regcache_h) $(frame_unwind_h) $(value_h) tramp-frame.o: tramp-frame.c $(defs_h) $(tramp_frame_h) $(frame_unwind_h) \ $(gdbcore_h) $(symtab_h) $(objfiles_h) $(target_h) $(trad_frame_h) \ $(frame_base_h) $(gdb_assert_h) |