diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-07-03 20:36:54 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-07-03 20:36:54 +0000 |
commit | 36160dc4b2bf0b2f8341f8f017ea606adfcac332 (patch) | |
tree | 54f3da9959241f17896fa3667cc20097a5915d5f /gdb/Makefile.in | |
parent | 4dd79c29b4a65ae1ff861c3e9d42f190f6846770 (diff) | |
download | gdb-36160dc4b2bf0b2f8341f8f017ea606adfcac332.zip gdb-36160dc4b2bf0b2f8341f8f017ea606adfcac332.tar.gz gdb-36160dc4b2bf0b2f8341f8f017ea606adfcac332.tar.bz2 |
* infcmd.c (print_return_value): Remove compatibility code calling
deprecated_grub_regcache_for_registers.
* values.c: Include "regcache.h".
(value_being_returned): Update. Use
deprecated_grub_regcache_for_registers to extract the register
buffer address.
* value.h (value_being_returned): Change ``retbuf'' parameter to a
``struct regcache''.
* Makefile.in (values.o): Add dependency on $(regcache_h).
* inferior.h (run_stack_dummy): Change type of second parameter to
a ``struct regcache''.
* valops.c (hand_function_call): Change type of retbuf to ``struct
regcache''. Allocate using regcache_xmalloc, clean using
make_cleanup_regcache_xfree.
* infcmd.c (run_stack_dummy): Update. Use
regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
* regcache.c (do_regcache_xfree): New function.
(make_cleanup_regcache_xfree): New function.
* regcache.h (make_cleanup_regcache_xfree): Declare.
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 d62c4f8..99538e2 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2234,7 +2234,7 @@ valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \ values.o: values.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \ $(gdbcore_h) $(gdbtypes_h) $(symtab_h) $(target_h) $(value_h) \ - $(gdb_string_h) scm-lang.h $(doublest_h) + $(gdb_string_h) scm-lang.h $(doublest_h) $(regcache_h) vax-tdep.o: vax-tdep.c $(OP_INCLUDE)/vax.h $(defs_h) $(symtab_h) \ $(arch_utils_h) $(inferior_h) $(vax_tdep_h) |