summaryrefslogtreecommitdiff
path: root/gdb/typeprint.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-11-10 21:34:56 +0000
committerAndrew Cagney <cagney@redhat.com>2001-11-10 21:34:56 +0000
commit3d6d86c64b85be304bccdbb0eeab64d82e95dd67 (patch)
tree8a1240660c46e76381346bb1576b10738057cfea /gdb/typeprint.c
parent6943961c9855edf1dd701b0047483f6a8bca6d90 (diff)
downloadbinutils-gdb-3d6d86c64b85be304bccdbb0eeab64d82e95dd67.tar.gz
s/value_ptr/struct value */
Diffstat (limited to 'gdb/typeprint.c')
-rw-r--r--gdb/typeprint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/typeprint.c b/gdb/typeprint.c
index 7ea7098c819..b56610d3ac0 100644
--- a/gdb/typeprint.c
+++ b/gdb/typeprint.c
@@ -1,6 +1,6 @@
/* Language independent support for printing types for GDB, the GNU debugger.
Copyright 1986, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1998, 1999,
- 2000 Free Software Foundation, Inc.
+ 2000, 2001 Free Software Foundation, Inc.
This file is part of GDB.
@@ -126,7 +126,7 @@ static void
whatis_exp (char *exp, int show)
{
struct expression *expr;
- register value_ptr val;
+ struct value *val;
register struct cleanup *old_chain = NULL;
struct type *real_type = NULL;
struct type *type;
@@ -333,7 +333,7 @@ print_type_scalar (struct type *type, LONGEST val, struct ui_file *stream)
void
maintenance_print_type (char *typename, int from_tty)
{
- register value_ptr val;
+ struct value *val;
register struct type *type;
register struct cleanup *old_chain;
struct expression *expr;