mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
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) <name, set_name>: New methods. (TYPE_CODE): Use type::name. Change all call sites used to set the name to use type::set_name instead.
This commit is contained in:
@ -2274,7 +2274,7 @@ rs6000_builtin_type_vec64 (struct gdbarch *gdbarch)
|
||||
init_vector_type (bt->builtin_int8, 8));
|
||||
|
||||
TYPE_VECTOR (t) = 1;
|
||||
TYPE_NAME (t) = "ppc_builtin_type_vec64";
|
||||
t->set_name ("ppc_builtin_type_vec64");
|
||||
tdep->ppc_builtin_type_vec64 = t;
|
||||
}
|
||||
|
||||
@ -2321,7 +2321,7 @@ rs6000_builtin_type_vec128 (struct gdbarch *gdbarch)
|
||||
init_vector_type (bt->builtin_int8, 16));
|
||||
|
||||
TYPE_VECTOR (t) = 1;
|
||||
TYPE_NAME (t) = "ppc_builtin_type_vec128";
|
||||
t->set_name ("ppc_builtin_type_vec128");
|
||||
tdep->ppc_builtin_type_vec128 = t;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user