From: Stu Grossman Date: Tue, 15 Jun 1993 20:37:37 +0000 (+0000) Subject: Changes from Jeff Law, law@cs.utah.edu: X-Git-Tag: gdb-4_18~18821 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5aef7c67a3054771b0828760a0e3316963a7b73d;p=external%2Fbinutils.git Changes from Jeff Law, law@cs.utah.edu: * hppa-dis.c: Fix typo. 'a' and 'd' were reversed. Do not print a space before the completers specified by 'a' and 'd'. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 3948106..476232d 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,10 @@ +Tue Jun 15 13:36:10 1993 Stu Grossman (grossman@cygnus.com) + + Changes from Jeff Law, law@cs.utah.edu: + * hppa-dis.c: Fix typo. 'a' and 'd' were reversed. + Do not print a space before the completers specified by + 'a' and 'd'. + Fri Jun 11 18:40:21 1993 Ken Raeburn (raeburn@cygnus.com) * mips-dis.c: No longer need to bomb out if HOST_64_BIT is diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index 115013c..3026996 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -366,7 +366,7 @@ print_insn_hppa (memaddr, info) (*info->fprintf_func) (info->stream, "%s", opcode->name); - if (!strchr ("cCY~nZFIM", opcode->args[0])) + if (!strchr ("cCY~nZFIMad", opcode->args[0])) (*info->fprintf_func) (info->stream, " "); for (s = opcode->args; *s != '\0'; ++s) { @@ -453,11 +453,11 @@ print_insn_hppa (memaddr, info) fputs_filtered (add_cond_names[GET_FIELD (insn, 16, 18) + 8], info); break; - case 'd': + case 'a': (*info->fprintf_func) (info->stream, "%s", compare_cond_names[GET_COND (insn)]); break; - case 'a': + case 'd': case '!': (*info->fprintf_func) (info->stream, "%s", add_cond_names[GET_FIELD (insn, 16, 18)]);