summaryrefslogtreecommitdiff
path: root/gdb/tracepoint.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-12-25 22:24:39 +0000
committerAndrew Cagney <cagney@redhat.com>2001-12-25 22:24:39 +0000
commitb814415a8fffabeb188d8e4ae39c861a8a9570c9 (patch)
tree3a03c338d2878573f09c57c00df4ff93d120897e /gdb/tracepoint.c
parentfc677c0e8cc51af5529c0a0a08eebef31ce156ee (diff)
downloadgdb-b814415a8fffabeb188d8e4ae39c861a8a9570c9.tar.gz
* 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.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r--gdb/tracepoint.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c
index 45794e64bd2..7e2f112daaa 100644
--- a/gdb/tracepoint.c
+++ b/gdb/tracepoint.c
@@ -254,7 +254,8 @@ set_traceframe_context (CORE_ADDR trace_pc)
{
static struct type *func_string, *file_string;
static struct type *func_range, *file_range;
- static value_ptr func_val, file_val;
+ struct value *func_val;
+ struct value *file_val;
static struct type *charstar;
int len;
@@ -1486,7 +1487,7 @@ encode_actions (struct tracepoint *t, char ***tdp_actions,
struct expression *exp = NULL;
struct action_line *action;
int i;
- value_ptr tempval;
+ struct value *tempval;
struct collection_list *collect;
struct cmd_list_element *cmd;
struct agent_expr *aexpr;