summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-10-21 01:06:25 +0000
committerAndrew Cagney <cagney@redhat.com>2001-10-21 01:06:25 +0000
commite933e53888498476dd40ce8e87fb18d8909499b2 (patch)
tree5194363ed3721aacbd2a701a1397aa21a68f8da1 /gdb/cp-abi.c
parentmerge from gcc (diff)
downloadbinutils-gdb-e933e53888498476dd40ce8e87fb18d8909499b2.tar.gz
binutils-gdb-e933e53888498476dd40ce8e87fb18d8909499b2.tar.bz2
binutils-gdb-e933e53888498476dd40ce8e87fb18d8909499b2.zip
* cp-abi.h, hpacc-abi.c, gnu-v2-abi.c, cp-abi.c: Ditto.
Diffstat (limited to 'gdb/cp-abi.c')
-rw-r--r--gdb/cp-abi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/cp-abi.c b/gdb/cp-abi.c
index eb31270367e..b9dac53df52 100644
--- a/gdb/cp-abi.c
+++ b/gdb/cp-abi.c
@@ -60,8 +60,8 @@ is_operator_name (const char *name)
return (*current_cp_abi.is_operator_name) (name);
}
-value_ptr
-value_virtual_fn_field (value_ptr * arg1p, struct fn_field * f, int j,
+struct value *
+value_virtual_fn_field (struct value **arg1p, struct fn_field * f, int j,
struct type * type, int offset)
{
if ((current_cp_abi.virtual_fn_field) == NULL)
@@ -69,7 +69,7 @@ value_virtual_fn_field (value_ptr * arg1p, struct fn_field * f, int j,
return (*current_cp_abi.virtual_fn_field) (arg1p, f, j, type, offset);
}
struct type *
-value_rtti_type (value_ptr v, int *full, int *top, int *using_enc)
+value_rtti_type (struct value *v, int *full, int *top, int *using_enc)
{
if ((current_cp_abi.rtti_type) == NULL)
return NULL;