Revisión | a915c10f7f1cd8ed433554f05a7281995ae9a540 (tree) |
---|---|
Tiempo | 2015-11-20 23:16:30 |
Autor | Nick Clifton <nickc@redh...> |
Commiter | Nick Clifton |
Remove a if-clause that is redundant because the same test has been performed earlier on.
PR binutils/19224
* h8300-dis.c (bfd_h8_disassemble): Remove redundant if clause.
@@ -1,5 +1,10 @@ | ||
1 | 1 | 2015-11-20 Nick Clifton <nickc@redhat.com> |
2 | 2 | |
3 | + PR binutils/19224 | |
4 | + * h8300-dis.c (bfd_h8_disassemble): Remove redundant if clause. | |
5 | + | |
6 | +2015-11-20 Nick Clifton <nickc@redhat.com> | |
7 | + | |
3 | 8 | * po/zh_CN.po: Updated simplified Chinese translation. |
4 | 9 | |
5 | 10 | 2015-11-19 Matthew Wahab <matthew.wahab@arm.com> |
@@ -544,10 +544,6 @@ bfd_h8_disassemble (bfd_vma addr, disassemble_info *info, int mach) | ||
544 | 544 | (data[i] << 16) | (data[i + 1] << 8) | (data[i + 2]); |
545 | 545 | cstlen[opnr] = 24; |
546 | 546 | } |
547 | - else if (looking_for & IGNORE) | |
548 | - { | |
549 | - ; | |
550 | - } | |
551 | 547 | else if (looking_for & DISPREG) |
552 | 548 | { |
553 | 549 | dispregno[opnr] = thisnib & 7; |