diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-01-06 18:49:09 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-01-06 18:49:09 +0000 |
commit | 57467040c68bbca26daf2ba7604d1b4c1f77a09a (patch) | |
tree | 7ef802c4acbb24bc2941dcc6a1cb477734dc8c67 /gdb/inferior.h | |
parent | 3d4b66e719c5da9c373e652d0b754ec06c76709b (diff) | |
download | gdb-57467040c68bbca26daf2ba7604d1b4c1f77a09a.tar.gz |
2003-01-06 Andrew Cagney <cagney@redhat.com>
* MAINTAINERS (Target Instruction Set Architectures): Update
arm-elf. Can be built with -Werror, has been multiarched.
* value.h (unpack_long): Make buffer parameter constant.
(unpack_double, unpack_pointer, unpack_field_as_long): Ditto.
* scm-lang.h (scm_parse): Ditto.
* defs.h (extract_typed_address, extract_address): Ditto.
(extract_long_unsigned_integer): Ditto.
* inferior.h (unsigned_pointer_to_address): Ditto.
(signed_pointer_to_address): Ditto.
* gdbarch.sh (POINTER_TO_ADDRESS): Ditto.
* gdbarch.h, gdbarch.c: Regenerate.
* findvar.c (extract_long_unsigned_integer): Update.
(extract_address): Update.
(extract_typed_address): Update.
(unsigned_pointer_to_address): Update.
* values.c (unpack_long): Update.
(unpack_double): Update.
(unpack_pointer): Update.
(unpack_field_as_long): Update.
* d10v-tdep.c (d10v_pointer_to_address): Update.
* avr-tdep.c (avr_pointer_to_address): Update.
* scm-lang.c (scm_unpack): Update.
* findvar.c (signed_pointer_to_address): Update.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 09cd7ff4c9d..79ca670eebb 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -185,11 +185,12 @@ extern CORE_ADDR read_fp (void); extern CORE_ADDR generic_target_read_fp (void); -extern CORE_ADDR unsigned_pointer_to_address (struct type *type, void *buf); +extern CORE_ADDR unsigned_pointer_to_address (struct type *type, const void *buf); extern void unsigned_address_to_pointer (struct type *type, void *buf, CORE_ADDR addr); -extern CORE_ADDR signed_pointer_to_address (struct type *type, void *buf); +extern CORE_ADDR signed_pointer_to_address (struct type *type, + const void *buf); extern void address_to_signed_pointer (struct type *type, void *buf, CORE_ADDR addr); |