diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-10-21 01:06:25 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-10-21 01:06:25 +0000 |
commit | e933e53888498476dd40ce8e87fb18d8909499b2 (patch) | |
tree | 5194363ed3721aacbd2a701a1397aa21a68f8da1 /gdb/cp-abi.c | |
parent | 3bc62f91f49adee45295debabc8b19e10986619f (diff) | |
download | gdb-e933e53888498476dd40ce8e87fb18d8909499b2.zip gdb-e933e53888498476dd40ce8e87fb18d8909499b2.tar.gz gdb-e933e53888498476dd40ce8e87fb18d8909499b2.tar.bz2 |
* 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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/cp-abi.c b/gdb/cp-abi.c index eb31270..b9dac53 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; |