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/hpacc-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/hpacc-abi.c')
-rw-r--r-- | gdb/hpacc-abi.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/hpacc-abi.c b/gdb/hpacc-abi.c index f9ec3174..4dcb1c3 100644 --- a/gdb/hpacc-abi.c +++ b/gdb/hpacc-abi.c @@ -80,16 +80,16 @@ hpacc_is_vtable_name (const char *name) J is an index into F which provides the desired virtual function. TYPE is the type in which F is located. */ -static value_ptr -hpacc_virtual_fn_field (value_ptr * arg1p, struct fn_field * f, int j, +static struct value * +hpacc_virtual_fn_field (struct value **arg1p, struct fn_field * f, int j, struct type * type, int offset) { - value_ptr arg1 = *arg1p; + struct value *arg1 = *arg1p; struct type *type1 = check_typedef (VALUE_TYPE (arg1)); /* Deal with HP/Taligent runtime model for virtual functions */ - value_ptr vp; - value_ptr argp; /* arg1 cast to base */ + struct value *vp; + struct value *argp; /* arg1 cast to base */ CORE_ADDR coreptr; /* pointer to target address */ int class_index; /* which class segment pointer to use */ struct type *ftype = TYPE_FN_FIELD_TYPE (f, j); /* method type */ @@ -175,12 +175,12 @@ hpacc_virtual_fn_field (value_ptr * arg1p, struct fn_field * f, int j, static struct type * -hpacc_value_rtti_type (value_ptr v, int *full, int *top, int *using_enc) +hpacc_value_rtti_type (struct value *v, int *full, int *top, int *using_enc) { struct type *known_type; struct type *rtti_type; CORE_ADDR coreptr; - value_ptr vp; + struct value *vp; int using_enclosing = 0; long top_offset = 0; char rtti_type_name[256]; |