diff options
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-inferior.c | 2 | ||||
-rw-r--r-- | gdb/python/py-unwind.c | 5 | ||||
-rw-r--r-- | gdb/python/py-value.c | 6 |
3 files changed, 7 insertions, 6 deletions
diff --git a/gdb/python/py-inferior.c b/gdb/python/py-inferior.c index aec8c0f..3938dd8 100644 --- a/gdb/python/py-inferior.c +++ b/gdb/python/py-inferior.c @@ -689,7 +689,7 @@ infpy_thread_from_thread_handle (PyObject *self, PyObject *args, PyObject *kw) else if (gdbpy_is_value_object (handle_obj)) { struct value *val = value_object_to_value (handle_obj); - bytes = value_contents_all (val); + bytes = value_contents_all (val).data (); bytes_len = TYPE_LENGTH (value_type (val)); } else diff --git a/gdb/python/py-unwind.c b/gdb/python/py-unwind.c index 3d87a19..1669834 100644 --- a/gdb/python/py-unwind.c +++ b/gdb/python/py-unwind.c @@ -133,7 +133,7 @@ pyuw_value_obj_to_pointer (PyObject *pyo_value, CORE_ADDR *addr) if ((value = value_object_to_value (pyo_value)) != NULL) { *addr = unpack_pointer (value_type (value), - value_contents (value)); + value_contents (value).data ()); rc = 1; } } @@ -631,7 +631,8 @@ pyuw_sniffer (const struct frame_unwind *self, struct frame_info *this_frame, gdb_assert (data_size == TYPE_LENGTH (value_type (value))); cached_frame->reg[i].data = (gdb_byte *) xmalloc (data_size); - memcpy (cached_frame->reg[i].data, value_contents (value), data_size); + memcpy (cached_frame->reg[i].data, + value_contents (value).data (), data_size); } } diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c index d45df5f..c843c2c 100644 --- a/gdb/python/py-value.c +++ b/gdb/python/py-value.c @@ -1500,8 +1500,8 @@ valpy_nonzero (PyObject *self) if (is_integral_type (type) || type->code () == TYPE_CODE_PTR) nonzero = !!value_as_long (self_value->value); else if (is_floating_value (self_value->value)) - nonzero = !target_float_is_zero (value_contents (self_value->value), - type); + nonzero = !target_float_is_zero + (value_contents (self_value->value).data (), type); else /* All other values are True. */ nonzero = 1; @@ -1754,7 +1754,7 @@ valpy_float (PyObject *self) type = check_typedef (type); if (type->code () == TYPE_CODE_FLT && is_floating_value (value)) - d = target_float_to_host_double (value_contents (value), type); + d = target_float_to_host_double (value_contents (value).data (), type); else if (type->code () == TYPE_CODE_INT) { /* Note that valpy_long accepts TYPE_CODE_PTR and some |