diff options
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/mips16-opc.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 8017b0f..cc2ac3c 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,9 @@ 2016-12-09 Maciej W. Rozycki <macro@imgtec.com> + * mips16-opc.c (decode_mips16_operand) <'>'>: Remove cases. + +2016-12-09 Maciej W. Rozycki <macro@imgtec.com> + * mips16-opc.c (decode_mips16_operand) <'e'>: Use HINT rather than UINT. diff --git a/opcodes/mips16-opc.c b/opcodes/mips16-opc.c index 2b0e942..f1a67ed 100644 --- a/opcodes/mips16-opc.c +++ b/opcodes/mips16-opc.c @@ -76,7 +76,6 @@ decode_mips16_operand (char type, bfd_boolean extended_p) switch (type) { case '<': UINT (5, 0); - case '>': UINT (5, 0); case '[': UINT (6, 0); case ']': UINT (6, 0); @@ -105,7 +104,6 @@ decode_mips16_operand (char type, bfd_boolean extended_p) switch (type) { case '<': INT_ADJ (3, 2, 8, 0, FALSE); - case '>': INT_ADJ (3, 8, 8, 0, FALSE); case '[': INT_ADJ (3, 2, 8, 0, FALSE); case ']': INT_ADJ (3, 8, 8, 0, FALSE); |