diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-10-16 01:58:07 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-10-16 01:58:07 +0000 |
commit | 1aa20aa88f25187a6947acc8d8ccaeb97daaa4d0 (patch) | |
tree | ee454a018ac2871270bbca8caaabe9a2722481a2 /gdb/stack.c | |
parent | dbbd9c57ff004955375f214b66a29cd0abf101fd (diff) | |
download | gdb-1aa20aa88f25187a6947acc8d8ccaeb97daaa4d0.zip gdb-1aa20aa88f25187a6947acc8d8ccaeb97daaa4d0.tar.gz gdb-1aa20aa88f25187a6947acc8d8ccaeb97daaa4d0.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index f2536aa..4c7e5fa 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -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); } |