diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1991-04-26 23:04:32 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1991-04-26 23:04:32 +0000 |
commit | b99f250bf9b29c4a09c75480522140e219b26537 (patch) | |
tree | 04c87d94b4c4af80ff80c6da96aec24fd9121354 /gdb/value.h | |
parent | 71b16efa43348381c82f4e8f494fe327e7d6493e (diff) | |
download | gdb-b99f250bf9b29c4a09c75480522140e219b26537.zip gdb-b99f250bf9b29c4a09c75480522140e219b26537.tar.gz gdb-b99f250bf9b29c4a09c75480522140e219b26537.tar.bz2 |
* values.c, value.h: New functions value_{headof,from_vtable_info}.
* value.h: Remove redundant declaration of value_static_field.
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/value.h b/gdb/value.h index 4afe858..e0cc0d4 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -216,6 +216,7 @@ value value_cast (); value value_zero (); value value_repeat (); value value_subscript (); +value value_from_vtable_info (); value value_being_returned (); int using_struct_return (); @@ -245,11 +246,10 @@ value value_x_binop (); value value_x_unop (); value value_fn_field (); value value_virtual_fn_field (); -value value_static_field (); int binop_user_defined_p (); int unop_user_defined_p (); int typecmp (); -int fill_in_vptr_fieldno (); +void fill_in_vptr_fieldno (); int destructor_name_p (); #define value_free(val) free (val) |