diff options
author | Jeff Law <law@redhat.com> | 1999-09-18 18:19:56 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-09-18 18:19:56 +0000 |
commit | 46e36b17b0368f10d11e66029f3ed3a1c1753726 (patch) | |
tree | 75cd553eb749771cd7a21d9924d0d1970b252b1e | |
parent | e061d86ffddc6e21cc949775f957db933ee741b7 (diff) | |
download | gdb-46e36b17b0368f10d11e66029f3ed3a1c1753726.zip gdb-46e36b17b0368f10d11e66029f3ed3a1c1753726.tar.gz gdb-46e36b17b0368f10d11e66029f3ed3a1c1753726.tar.bz2 |
* hppa-dis.c: (print_insn_hppa): Do output a space before a 'v'
operand.
-rw-r--r-- | opcodes/ChangeLog | 3 | ||||
-rw-r--r-- | opcodes/hppa-dis.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 3d361fc..cc559a9 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,8 @@ Sat Sep 18 11:36:12 1999 Jeffrey A Law (law@cygnus.com) + * hppa-dis.c: (print_insn_hppa): Do output a space before a 'v' + operand. + * hppa-dis.c: (print_insn_hppa): Handle 'fX'. * hppa-dis.c: (print_insn_hppa): Add missing break after diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index 4c2c6ce..f0057c2 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -345,7 +345,7 @@ print_insn_hppa (memaddr, info) (*info->fprintf_func) (info->stream, "%s", opcode->name); - if (!strchr ("cfCY?-+nHNZFIu", opcode->args[0])) + if (!strchr ("cfCY?-+nHNZFIuv", opcode->args[0])) (*info->fprintf_func) (info->stream, " "); for (s = opcode->args; *s != '\0'; ++s) { |