Replace exception_print_same with operator!=
authorTom Tromey <tom@tromey.com>
Sun, 27 Jun 2021 17:06:04 +0000 (11:06 -0600)
committerTom Tromey <tom@tromey.com>
Fri, 30 Jul 2021 14:42:39 +0000 (08:42 -0600)
I noticed that exception_print_same is only used in a single spot, and
it seemed to be better as an operator!= method attached to
gdb_exception.

Regression tested on x86-64 Fedora 34.

gdb/exceptions.c
gdb/exceptions.h
gdb/exec.c
gdbsupport/common-exceptions.h

index 32db6fe8235e90bc09c5388cd00890e2523c8604..5245b7ca28d1570fb05635df71e0cfe99519139a 100644 (file)
@@ -133,17 +133,3 @@ exception_fprintf (struct ui_file *file, const struct gdb_exception &e,
       print_exception (file, e);
     }
 }
-
-/* See exceptions.h.  */
-
-int
-exception_print_same (const struct gdb_exception &e1,
-                     const struct gdb_exception &e2)
-{
-  const char *msg1 = e1.message == nullptr ? "" : e1.what ();
-  const char *msg2 = e2.message == nullptr ? "" : e2.what ();
-
-  return (e1.reason == e2.reason
-         && e1.error == e2.error
-         && strcmp (msg1, msg2) == 0);
-}
index b0416d4005c4f3baeb2aa1ce26dedcf2a5af34e4..8bd2dcc634a9b9dbf5524f3dd5b4bf742174eb78 100644 (file)
@@ -31,7 +31,4 @@ extern void exception_fprintf (struct ui_file *file,
                               const char *prefix,
                               ...) ATTRIBUTE_PRINTF (3, 4);
 
-/* Compare two exception objects for print equality.  */
-extern int exception_print_same (const struct gdb_exception &e1,
-                                const struct gdb_exception &e2);
 #endif
index 35bf7bd450668e9969f51c7cfaa74d27ffbf569a..a28336be8ef165cd10191c5b28f60015ab5b8600 100644 (file)
@@ -201,7 +201,7 @@ try_open_exec_file (const char *exec_file_host, struct inferior *inf,
        }
       catch (const gdb_exception_error &err)
        {
-         if (!exception_print_same (prev_err, err))
+         if (prev_err != err)
            warning ("%s", err.what ());
        }
     }
index 92f43d267ada3b384b8fd9535392a04f223a283c..5933c7356fe66f0dde12f8b3facb7f3c1e783c2e 100644 (file)
@@ -165,6 +165,23 @@ struct gdb_exception
     return message->c_str ();
   }
 
+  /* Compare two exceptions.  */
+  bool operator== (const gdb_exception &other) const
+  {
+    const char *msg1 = message == nullptr ? "" : what ();
+    const char *msg2 = other.message == nullptr ? "" : other.what ();
+
+    return (reason == other.reason
+           && error == other.error
+           && strcmp (msg1, msg2) == 0);
+  }
+
+  /* Compare two exceptions.  */
+  bool operator!= (const gdb_exception &other) const
+  {
+    return !(*this == other);
+  }
+
   enum return_reason reason;
   enum errors error;
   std::shared_ptr<std::string> message;