Viewing memory addresses
Expression
|
Meaning
|
---|
#line
|
Address of the code at line number line in the current file.
|
"foo.c" # proc # line
|
Address of line line for procedure proc in file foo.c.
|
proc # line
|
Address of line line for procedure proc.
|
stack_depth # line
|
Address of line line for procedure at stack depth stack_depth.
|
"foo.c" # proc ## label
|
Address of label label for procedure proc in file foo.c.
|
proc ## label
|
Address of label label for procedure proc.
|
Printing results of a complex statement
The results of a complex statement are not automatically printed. For example:
foo
results in printing the value of the variable foo, whereas
{foo}
does not. In this latter case, you can use the print command to display the value; that is
{print foo}
prints the value of foo.
Related topic:
Copyright © 1999, Green Hills Software. All rights
reserved.