diff options
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 4c181dc..bd02cae 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -3777,12 +3777,12 @@ sdata_make_value (struct gdbarch *gdbarch, struct internalvar *var, type = init_vector_type (builtin_type (gdbarch)->builtin_true_char, buf->size ()); - v = allocate_value (type); + v = value::allocate (type); memcpy (value_contents_raw (v).data (), buf->data (), buf->size ()); return v; } else - return allocate_value (builtin_type (gdbarch)->builtin_void); + return value::allocate (builtin_type (gdbarch)->builtin_void); } #if !defined(HAVE_LIBEXPAT) |