Delete TYPE_CODE_CLASS, it's just an alias of TYPE_CODE_STRUCT.

gdb/ChangeLog:

	* gdbtypes.h (TYPE_CODE_CLASS): Delete.  All uses changed to use
	TYPE_CODE_STRUCT.
This commit is contained in:
Doug Evans
2014-11-06 17:19:06 -08:00
parent 9c1877ead0
commit 4753d33b40
19 changed files with 27 additions and 40 deletions

View File

@ -232,7 +232,7 @@ convert_field (struct type *type, int field)
goto failarg;
Py_DECREF (arg);
if (TYPE_CODE (type) == TYPE_CODE_CLASS)
if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
arg = field < TYPE_N_BASECLASSES (type) ? Py_True : Py_False;
else
arg = Py_False;

View File

@ -302,7 +302,7 @@ valpy_get_dynamic_type (PyObject *self, void *closure)
if (((TYPE_CODE (type) == TYPE_CODE_PTR)
|| (TYPE_CODE (type) == TYPE_CODE_REF))
&& (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_CLASS))
&& (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_STRUCT))
{
struct value *target;
int was_pointer = TYPE_CODE (type) == TYPE_CODE_PTR;
@ -321,7 +321,7 @@ valpy_get_dynamic_type (PyObject *self, void *closure)
type = lookup_reference_type (type);
}
}
else if (TYPE_CODE (type) == TYPE_CODE_CLASS)
else if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
type = value_rtti_type (val, NULL, NULL, NULL);
else
{