[binutils-gdb] Remove redundant check from check_types_equal
Tom Tromey via Gdb-cvs <[email protected]>
| Newsgroups | gmane.comp.gdb.cvs |
|---|---|
| Message-ID | <[email protected]> |
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=035b2e70824ab51ec4d6754345456622c618b450 commit 035b2e70824ab51ec4d6754345456622c618b450 Author: Tom Tromey <[email protected]> Date: Wed Aug 5 13:30:42 2026 -0600 Remove redundant check from check_types_equal 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 <[email protected]> Approved-By: Tom de Vries <[email protected]> Diff: --- gdb/gdbtypes.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c index f5c0177bff2..4b6c01910f4 100644 --- a/gdb/gdbtypes.c +++ b/gdb/gdbtypes.c @@ -4092,7 +4092,6 @@ check_types_equal (struct type *type1, struct type *type2, || 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;