From: Jeff Law Date: Sat, 28 Aug 1999 06:29:15 +0000 (+0000) Subject: * hppa-dis.c (print_insn_hppa): Look at next arg instead of bits X-Git-Tag: gdb-1999-08-30~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f31259178a681b11fbdf023d1a970ee2e4340cb;p=platform%2Fupstream%2Fbinutils.git * hppa-dis.c (print_insn_hppa): Look at next arg instead of bits to decide to print a space. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index ffaf3e7..6efe115 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +Sat Aug 28 00:27:24 1999 Jerry Quinn + + * hppa-dis.c (print_insn_hppa): Look at next arg instead of bits + to decide to print a space. + 1999-08-21 Alan Modra * i386-dis.c: Add AMD athlon instruction support. diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index 5df90c4..2e68f34 100644 --- a/opcodes/hppa-dis.c +++ b/opcodes/hppa-dis.c @@ -677,7 +677,7 @@ print_insn_hppa (memaddr, info) case 'F': /* if no destination completer and not before a completer for fcmp, need a space here */ - if (GET_FIELD (insn, 21, 22) == 1 || s[1] == '?') + if (s[1] == 'G' || s[1] == '?') fputs_filtered (float_format_names[GET_FIELD (insn, 19, 20)], info); else @@ -701,7 +701,7 @@ print_insn_hppa (memaddr, info) case 'I': /* if no destination completer and not before a completer for fcmp, need a space here */ - if (GET_FIELD (insn, 21, 22) == 1 || s[1] == '?') + if (s[1] == '?') fputs_filtered (float_format_names[GET_FIELD (insn, 20, 20)], info); else