Remove extraneous parentheses.
authorJohn Baldwin <jhb@FreeBSD.org>
Mon, 20 Jun 2016 23:16:31 +0000 (16:16 -0700)
committerJohn Baldwin <jhb@FreeBSD.org>
Wed, 6 Jul 2016 13:09:40 +0000 (06:09 -0700)
gdb/ChangeLog:

* h8300-tdep.c (h8300_print_register): Remove extraneous parentheses.

gdb/ChangeLog
gdb/h8300-tdep.c

index 5adf9a8..6a9ebbd 100644 (file)
@@ -1,5 +1,9 @@
 2016-07-06  John Baldwin  <jhb@FreeBSD.org>
 
+       * h8300-tdep.c (h8300_print_register): Remove extraneous parentheses.
+
+2016-07-06  John Baldwin  <jhb@FreeBSD.org>
+
        * ada-lang.c (ada_unpack_from_contents): Use unsigned constants with
        left shifts.
 
index d479a20..951f005 100644 (file)
@@ -1051,7 +1051,7 @@ h8300_print_register (struct gdbarch *gdbarch, struct ui_file *file,
        fprintf_filtered (file, "u> ");
       if ((C | Z) == 1)
        fprintf_filtered (file, "u<= ");
-      if ((C == 0))
+      if (C == 0)
        fprintf_filtered (file, "u>= ");
       if (C == 1)
        fprintf_filtered (file, "u< ");