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 | 66140c26166febde29e6e7f2001674a930967545 (patch) | |
tree | fb09101d171b327c41d6046fcedd059db6ebef62 /gdb/inferior.h | |
parent | c180f50118e01dc9863da47ad0b7d2b55f68cfb0 (diff) | |
download | gdb-66140c26166febde29e6e7f2001674a930967545.zip gdb-66140c26166febde29e6e7f2001674a930967545.tar.gz gdb-66140c26166febde29e6e7f2001674a930967545.tar.bz2 |
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 09cd7ff..79ca670 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); |