ptid_{lwp,tid}_p: Remove unnecessary checks
authorSimon Marchi <simon.marchi@ericsson.com>
Wed, 5 Apr 2017 19:15:59 +0000 (15:15 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Wed, 5 Apr 2017 19:15:59 +0000 (15:15 -0400)
The calls to ptid_equal in ptid_lwp_p and ptid_tid_p that compare the
argument to minus_one_ptid and null_ptid are not necessary.  The calls
in question are:

   if (ptid_equal (minus_one_ptid, ptid)
       || ptid_equal (null_ptid, ptid))
     return 0;

minus_one_ptid is { .pid = -1, .lwp = 0, .tid = 0 }
null_ptid is { .pid = 0, .lwp = 0, .tid = 0 }

If the ptid argument is either of them, the statements

  return (ptid_get_lwp (ptid) != 0);

and

  return (ptid_get_tid (ptid) != 0);

will yield the same result (0/false).

gdb/ChangeLog:

* common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
minus_one_ptid and null_ptid.

gdb/ChangeLog
gdb/common/ptid.c

index d21436c8d6509610334f9dcb1ec37efe73687019..880af5b8c93dfd231ad627eb0f68e4a11dadf68c 100644 (file)
@@ -1,3 +1,8 @@
+2017-04-05  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
+       minus_one_ptid and null_ptid.
+
 2017-04-05  Pedro Alves  <palves@redhat.com>
 
        * warning.m4 (build_warnings): Remove -Wno-write-strings.
index 05c0db17ddf49ea60a94f05652e521aa48ab9414..b56971b9af2d039aed20c76646cd9bd94717099c 100644 (file)
@@ -97,10 +97,6 @@ ptid_is_pid (ptid_t ptid)
 int
 ptid_lwp_p (ptid_t ptid)
 {
-  if (ptid_equal (minus_one_ptid, ptid)
-      || ptid_equal (null_ptid, ptid))
-    return 0;
-
   return (ptid_get_lwp (ptid) != 0);
 }
 
@@ -109,10 +105,6 @@ ptid_lwp_p (ptid_t ptid)
 int
 ptid_tid_p (ptid_t ptid)
 {
-  if (ptid_equal (minus_one_ptid, ptid)
-      || ptid_equal (null_ptid, ptid))
-    return 0;
-
   return (ptid_get_tid (ptid) != 0);
 }