mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-25 19:58:06 +08:00
Add comment (part of immediately previous commit).
This commit is contained in:
@ -728,6 +728,11 @@ parse_frame_specification (char *frame_exp)
|
|||||||
|
|
||||||
tmp_cleanup = make_cleanup (xfree, addr_string);
|
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
|
||||||
|
parse_and_eval_long and parse_and_eval_address because
|
||||||
|
of the issue of potential side effects from evaluating
|
||||||
|
the expression. */
|
||||||
vp = parse_and_eval (addr_string);
|
vp = parse_and_eval (addr_string);
|
||||||
if (numargs == 0)
|
if (numargs == 0)
|
||||||
level = value_as_long (vp);
|
level = value_as_long (vp);
|
||||||
|
Reference in New Issue
Block a user