check_types_equal compares both is_nottext and instance_flags, but the
latter includes the former, so the redundant check can be removed.
Reviewed-By: Tankut Baris Aktemur <TankutBaris.Aktemur@amd.com>
Approved-By: Tom de Vries <tdevries@suse.de>
|| type1->endianity_is_not_default () != type2->endianity_is_not_default ()
|| type1->has_varargs () != type2->has_varargs ()
|| type1->is_vector () != type2->is_vector ()
- || type1->is_nottext () != type2->is_nottext ()
|| type1->instance_flags () != type2->instance_flags ()
|| type1->num_fields () != type2->num_fields ())
return false;