* value.h (value_as_address): Rename value_as_pointer.

* eval.c, findvar.c, gnu-v2-abi.c, gnu-v3-abi.c, jv-lang.c,
jv-valprint.c, printcmd.c, stack.c, top.c, valarith.c, valops.c,
values.c: Update.
This commit is contained in:
Andrew Cagney
2001-10-16 01:58:07 +00:00
parent dbbd9c57ff
commit 1aa20aa88f
16 changed files with 51 additions and 39 deletions

View File

@ -701,7 +701,7 @@ parse_frame_specification (char *frame_exp)
tmp_cleanup = make_cleanup (xfree, addr_string);
/* NOTE: we call parse_and_eval and then both
value_as_long and value_as_pointer rather than calling
value_as_long and value_as_address rather than calling
parse_and_eval_long and parse_and_eval_address because
of the issue of potential side effects from evaluating
the expression. */
@ -709,7 +709,7 @@ parse_frame_specification (char *frame_exp)
if (numargs == 0)
level = value_as_long (vp);
args[numargs++] = value_as_pointer (vp);
args[numargs++] = value_as_address (vp);
do_cleanups (tmp_cleanup);
}