Remove extraneous parentheses.
gdb/ChangeLog: * h8300-tdep.c (h8300_print_register): Remove extraneous parentheses.
This commit is contained in:
parent
db297a6501
commit
fb36c6bf0a
@ -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
|
||||
|
@ -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< ");
|
||||
|
Loading…
Reference in New Issue
Block a user