diff options
author | Jeff Law <law@redhat.com> | 1999-08-28 06:29:15 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-08-28 06:29:15 +0000 |
commit | 0d995ccc97aaa03851c07d5315ebdaa68f0d39e4 (patch) | |
tree | ebe8d1a5136658be13483099896169ef1425452e /opcodes | |
parent | 422277deb30f2ca34dd5b335ae90a84591b390dd (diff) | |
download | gdb-0d995ccc97aaa03851c07d5315ebdaa68f0d39e4.tar.gz |
* hppa-dis.c (print_insn_hppa): Look at next arg instead of bits
to decide to print a space.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/hppa-dis.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index ffaf3e7a2a2..6efe11510be 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +Sat Aug 28 00:27:24 1999 Jerry Quinn <jquinn@nortelnetworks.com> + + * hppa-dis.c (print_insn_hppa): Look at next arg instead of bits + to decide to print a space. + 1999-08-21 Alan Modra <alan@spri.levels.unisa.edu.au> * i386-dis.c: Add AMD athlon instruction support. diff --git a/opcodes/hppa-dis.c b/opcodes/hppa-dis.c index 5df90c4dffd..2e68f347411 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 |