From: Nick Clifton Date: Wed, 13 Apr 2011 13:20:24 +0000 (+0000) Subject: * v850-dis.c (disassemble): Always print a closing square brace if X-Git-Tag: sid-snapshot-20110501~177 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d063384af231365d6f623f89f09f1af909478f8;p=platform%2Fupstream%2Fbinutils.git * v850-dis.c (disassemble): Always print a closing square brace if an opening square brace was printed. --- diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 3f9b878..16abb00 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-04-13 Nick Clifton + + * gas/v850/v850e1.s: Add a insn using reg+offset addressing. + * gas/v850/v850e1.d: Add expected disassembly. + 2011-04-12 Nick Clifton PR binutils/12534 diff --git a/gas/testsuite/gas/v850/v850e1.d b/gas/testsuite/gas/v850/v850e1.d index 8172b09..9ba03ea 100644 --- a/gas/testsuite/gas/v850/v850e1.d +++ b/gas/testsuite/gas/v850/v850e1.d @@ -42,3 +42,4 @@ Disassembly of section .text: 0x0+76 ff 07 e6 00 [ ]*tst1 r0, lp 0x0+7a 83 00 [ ]*zxb sp 0x0+7c c4 00 [ ]*zxh gp +0x0+7e 63 ff 9d 00[ ]*st.w lp, 156\[sp\] diff --git a/gas/testsuite/gas/v850/v850e1.s b/gas/testsuite/gas/v850/v850e1.s index 5013261..2e6d640 100644 --- a/gas/testsuite/gas/v850/v850e1.s +++ b/gas/testsuite/gas/v850/v850e1.s @@ -36,3 +36,4 @@ tst1 r0, [r31] zxb r3 zxh r4 + st.w lp, 156[sp] diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 37151f9..ad85706 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2011-04-13 Nick Clifton + + * v850-dis.c (disassemble): Always print a closing square brace if + an opening square brace was printed. + 2011-04-12 Nick Clifton PR binutils/12534 diff --git a/opcodes/v850-dis.c b/opcodes/v850-dis.c index c3624b2..cf0d386 100644 --- a/opcodes/v850-dis.c +++ b/opcodes/v850-dis.c @@ -283,6 +283,7 @@ disassemble (bfd_vma memaddr, struct disassemble_info *info, int bytes_read, uns *opindex_ptr != 0; opindex_ptr++, opnum++) { + bfd_boolean square = FALSE; long value; int flag; char *prefix; @@ -323,11 +324,17 @@ disassemble (bfd_vma memaddr, struct disassemble_info *info, int bytes_read, uns } if (opnum == 1 && opnum == memop) - info->fprintf_func (info->stream, "%s[", prefix); + { + info->fprintf_func (info->stream, "%s[", prefix); + square = TRUE; + } else if (opnum > 1 && (v850_operands[*(opindex_ptr - 1)].flags & V850_OPERAND_DISP) != 0 && opnum == memop) - info->fprintf_func (info->stream, "%s[", prefix); + { + info->fprintf_func (info->stream, "%s[", prefix); + square = TRUE; + } else if (opnum > 1) info->fprintf_func (info->stream, ", %s", prefix); @@ -431,7 +438,7 @@ disassemble (bfd_vma memaddr, struct disassemble_info *info, int bytes_read, uns break; } - if (opnum == 2 && opnum == memop) + if (square) (*info->fprintf_func) (info->stream, "]"); }