mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-28 10:00:51 +00:00
hp merge changes -- too numerous to mention here; see ChangeLog and
ChangeLog-gdbtk for details.
This commit is contained in:
@@ -27,10 +27,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||
/* FIXME: For now, just explicitly declare c_val_print and use it instead */
|
||||
|
||||
int
|
||||
m2_val_print (type, valaddr, address, stream, format, deref_ref, recurse,
|
||||
pretty)
|
||||
m2_val_print (type, valaddr, embedded_offset, address,
|
||||
stream, format, deref_ref, recurse, pretty)
|
||||
struct type *type;
|
||||
char *valaddr;
|
||||
int embedded_offset;
|
||||
CORE_ADDR address;
|
||||
GDB_FILE *stream;
|
||||
int format;
|
||||
@@ -39,8 +40,8 @@ m2_val_print (type, valaddr, address, stream, format, deref_ref, recurse,
|
||||
enum val_prettyprint pretty;
|
||||
{
|
||||
extern int
|
||||
c_val_print PARAMS ((struct type *, char *, CORE_ADDR, GDB_FILE *, int, int,
|
||||
int, enum val_prettyprint));
|
||||
return (c_val_print (type, valaddr, address, stream, format, deref_ref,
|
||||
c_val_print PARAMS ((struct type *, char *, int, CORE_ADDR,
|
||||
GDB_FILE *, int, int, int, enum val_prettyprint));
|
||||
return (c_val_print (type, valaddr, 0, address, stream, format, deref_ref,
|
||||
recurse, pretty));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user