gdb: remove TYPE_VECTOR
gdb/ChangeLog: * gdbtypes.h (TYPE_VECTOR): Remove, replace all uses with type::is_vector. Change-Id: I1ac28755af44b1585c190553f9961288c8fb9137
This commit is contained in:
parent
2062087b35
commit
bd63c87008
29 changed files with 96 additions and 92 deletions
|
@ -3993,7 +3993,7 @@ check_types_equal (struct type *type1, struct type *type2,
|
|||
|| type1->has_no_signedness () != type2->has_no_signedness ()
|
||||
|| TYPE_ENDIANITY_NOT_DEFAULT (type1) != TYPE_ENDIANITY_NOT_DEFAULT (type2)
|
||||
|| type1->has_varargs () != type2->has_varargs ()
|
||||
|| TYPE_VECTOR (type1) != TYPE_VECTOR (type2)
|
||||
|| type1->is_vector () != type2->is_vector ()
|
||||
|| TYPE_NOTTEXT (type1) != TYPE_NOTTEXT (type2)
|
||||
|| TYPE_INSTANCE_FLAGS (type1) != TYPE_INSTANCE_FLAGS (type2)
|
||||
|| type1->num_fields () != type2->num_fields ())
|
||||
|
@ -5095,7 +5095,7 @@ recursive_dump_type (struct type *type, int spaces)
|
|||
/* This is used for things like AltiVec registers on ppc. Gcc emits
|
||||
an attribute for the array type, which tells whether or not we
|
||||
have a vector, instead of a regular array. */
|
||||
if (TYPE_VECTOR (type))
|
||||
if (type->is_vector ())
|
||||
{
|
||||
puts_filtered (" TYPE_VECTOR");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue