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 5adf9a8f34554d18a7272072ad0a6ce5a206af5f..6a9ebbddfec2222609a5f00efa9943058f24825b 100644 (file)
@@ -1,3 +1,7 @@
+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
index d479a20943a528dc938a106e2ec9ab862a013bda..951f00537bdf73c85e3d27716533d5bbbfd3fa1e 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< ");
This page took 0.028134 seconds and 4 git commands to generate.