gdb/ChangeLog:
2021-01-15 Luis Machado <luis.machado@arm.com>
* aarch64-tdep.c (aarch64_address_class_type_flags_to_name): Return
NULL.
+2021-01-15 Luis Machado <luis.machado@arm.com>
+
+ * aarch64-tdep.c (aarch64_address_class_type_flags_to_name): Return
+ NULL.
+
2020-12-30 Luis Machado <luis.machado@arm.com>
* capability.cc (capability::to_str): Append strings to
aarch64_address_class_type_flags_to_name (struct gdbarch *gdbarch,
type_instance_flags type_flags)
{
- if (type_flags & TYPE_INSTANCE_FLAG_CAPABILITY)
- return "__capability";
- else
+ /* No need to display the extra __capability modifier. GDB already takes
+ cares of this. */
return NULL;
}