mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
2011-10-17 Joost van der Sluis <joost@cnoc.nl>
* gdbtypes.h: Added TYPE_SAFE_NAME macro to get the name of a type or "<unnamed type"> when there is no name assigned. * gnu-v3-abi.c (gnuv3_rtti_type): Use TYPE_SAFE_NAME macro to avoid a sigint when no name is assigned.
This commit is contained in:
@@ -1204,6 +1204,11 @@ extern void allocate_gnat_aux_type (struct type *);
|
||||
|| TYPE_NFN_FIELDS (thistype) == 0) \
|
||||
&& (TYPE_STUB (thistype) || !TYPE_STUB_SUPPORTED (thistype)))
|
||||
|
||||
/* A helper macro that returns the name of a type or "unnamed type" if the type
|
||||
has no name. */
|
||||
#define TYPE_SAFE_NAME(type) \
|
||||
(TYPE_NAME (type) ? TYPE_NAME (type) : _("<unnamed type>"))
|
||||
|
||||
/* A helper macro that returns the name of an error type. If the type
|
||||
has a name, it is used; otherwise, a default is used. */
|
||||
#define TYPE_ERROR_NAME(type) \
|
||||
|
||||
Reference in New Issue
Block a user