* cli/cli-script.c (execute_control_command): Replace value_ptr

with a struct value pointer.
* ch-lang.c (evaluate_subexp_chill): Ditto.
* printcmd.c (printf_command): Ditto.
* tracepoint.c (set_traceframe_context): Ditto.
(encode_actions): Ditto.
* eval.c (evaluate_subexp_standard): Ditto.
This commit is contained in:
Andrew Cagney 2001-12-25 22:24:39 +00:00
parent 06b25f14b0
commit f976f6d464
6 changed files with 25 additions and 12 deletions

View file

@ -332,8 +332,8 @@ execute_control_command (struct command_line *cmd)
struct expression *expr;
struct command_line *current;
struct cleanup *old_chain = 0;
value_ptr val;
value_ptr val_mark;
struct value *val;
struct value *val_mark;
int loop;
enum command_control_type ret;
char *new_line;