public inbox for libabigail@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] abg-ir.cc: Remove always-true check.
@ 2020-03-19  9:02 Giuliano Procida
  2020-03-19 12:54 ` Matthias Maennich
  0 siblings, 1 reply; 5+ messages in thread
From: Giuliano Procida @ 2020-03-19  9:02 UTC (permalink / raw)
  To: libabigail; +Cc: dodji, kernel-team, gprocida

There is an instance of a if-statement testing the same variable as
its containing if-statement. The inner test always evaluates to true,
if it is reached.

	* src/abg-ir.cc (types_have_similar_structure): Remove
        identical nested conditional.

Signed-off-by: Giuliano Procida <gprocida@google.com>
---
 src/abg-ir.cc | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/abg-ir.cc b/src/abg-ir.cc
index 13023295..83602b8a 100644
--- a/src/abg-ir.cc
+++ b/src/abg-ir.cc
@@ -22669,11 +22669,10 @@ types_have_similar_structure(const type_base* first, const type_base* second)
 
       if (!was_indirect_type)
 	{
-	  if (!was_indirect_type)
-	    if ((ty1->get_size_in_bits() != ty2->get_size_in_bits())
-		|| (ty1->get_non_static_data_members().size()
-		    != ty2->get_non_static_data_members().size()))
-	      return false;
+          if ((ty1->get_size_in_bits() != ty2->get_size_in_bits())
+              || (ty1->get_non_static_data_members().size()
+                  != ty2->get_non_static_data_members().size()))
+            return false;
 
 	  for (class_or_union::data_members::const_iterator
 		 i = ty1->get_non_static_data_members().begin(),
-- 
2.25.1.481.gfbce0eb801-goog


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-03-20 23:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-19  9:02 [PATCH] abg-ir.cc: Remove always-true check Giuliano Procida
2020-03-19 12:54 ` Matthias Maennich
2020-03-19 14:18   ` Giuliano Procida
2020-03-19 14:31     ` [PATCH v2] " Giuliano Procida
2020-03-20 23:39       ` Dodji Seketeli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).