diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-07-08 20:42:15 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-07-08 20:42:15 +0000 |
commit | d6679b41b28c606c91fa91ca7a9ffff57ea36969 (patch) | |
tree | e4295ce849636f7869e105c2b9186ab8513ef693 /gdb/gdbtypes.h | |
parent | 6f6f8602adfdc3090a0b71ce663b0e6af0fa3650 (diff) | |
download | gdb-d6679b41b28c606c91fa91ca7a9ffff57ea36969.tar.gz |
* gdbtypes.h (builtin_type_void_data_ptr): Rename
builtin_type_ptr.
* gdbtypes.c (builtin_type_void_data_ptr): Update.
(build_gdbtypes): Update.
(_initialize_gdbtypes): Update.
* values.c (value_as_pointer): Update.
* utils.c (host_pointer_to_address): Update.
(address_to_host_pointer): Update.
Diffstat (limited to 'gdb/gdbtypes.h')
-rw-r--r-- | gdb/gdbtypes.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index 981dbec4b7c..bc0f8fb9cba 100644 --- a/gdb/gdbtypes.h +++ b/gdb/gdbtypes.h @@ -846,9 +846,10 @@ extern struct type *builtin_type_string; extern struct type *builtin_type_bool; /* Address/pointer types: */ -/* (C) Language pointer type. Some target platforms use an implicitly - {sign,zero} -extended 32 bit C language pointer on a 64 bit ISA. */ -extern struct type *builtin_type_ptr; +/* (C) Language `pointer to data' type. Some target platforms use an + implicitly {sign,zero} -extended 32 bit C language pointer on a 64 + bit ISA. */ +extern struct type *builtin_type_void_data_ptr; /* (C) Language `pointer to function returning void' type. Since ANSI, C standards have explicitly said that pointers to functions |