aboutsummaryrefslogtreecommitdiff
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
commitf976f6d464baa59f8d890626648c74943aed1ce1 (patch)
treef542587c8c572708118ff623e37384230261e87f /gdb/tracepoint.c
parent06b25f14b06f7ce665b495a436afc79d0c91a97f (diff)
downloadfsf-binutils-gdb-f976f6d464baa59f8d890626648c74943aed1ce1.zip
fsf-binutils-gdb-f976f6d464baa59f8d890626648c74943aed1ce1.tar.gz
fsf-binutils-gdb-f976f6d464baa59f8d890626648c74943aed1ce1.tar.bz2
* 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 45794e6..7e2f112 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;