From d0e39ea27cde07011967ab74d39cf13dfe3370c4 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sat, 16 May 2020 12:15:54 -0400 Subject: gdb: add type::name / type::set_name Add the `name` and `set_name` methods on `struct type`, in order to remove the `TYPE_NAME` macro. In this patch, the `TYPE_NAME` macro is changed to use `type::name`, so all the call sites that are used to set the type name are changed to use `type::set_name`. The next patch will remove `TYPE_NAME` completely. gdb/ChangeLog: * gdbtypes.h (struct type) : New methods. (TYPE_CODE): Use type::name. Change all call sites used to set the name to use type::set_name instead. --- gdb/arm-tdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/arm-tdep.c') diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 40bffbb..45df1bd 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -3920,7 +3920,7 @@ arm_neon_double_type (struct gdbarch *gdbarch) append_composite_type_field (t, "f64", elem); TYPE_VECTOR (t) = 1; - TYPE_NAME (t) = "neon_d"; + t->set_name ("neon_d"); tdep->neon_double_type = t; } @@ -3959,7 +3959,7 @@ arm_neon_quad_type (struct gdbarch *gdbarch) append_composite_type_field (t, "f64", init_vector_type (elem, 2)); TYPE_VECTOR (t) = 1; - TYPE_NAME (t) = "neon_q"; + t->set_name ("neon_q"); tdep->neon_quad_type = t; } -- cgit v1.1