aboutsummaryrefslogtreecommitdiff
path: root/gdb/i387-tdep.c
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1994-01-22 22:14:04 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1994-01-22 22:14:04 +0000
commitdfd4c728fa4aad5c2975966d280d3ae976dce121 (patch)
treed7d02525a949f01b4af79801638d678cba06740c /gdb/i387-tdep.c
parenta4738d5ed28c73761c121d19b599c688aa7c30ed (diff)
downloadgdb-dfd4c728fa4aad5c2975966d280d3ae976dce121.zip
gdb-dfd4c728fa4aad5c2975966d280d3ae976dce121.tar.gz
gdb-dfd4c728fa4aad5c2975966d280d3ae976dce121.tar.bz2
* i386aix-nat.c (i386_float_info): Reverse order of registers before
passing them to print_387_status. (print_387_status): Don't subtract top from 7 before using it. * i387-tdep.c: Remove comment about AIX wanting "top" subtracted from 7; the above explains it.
Diffstat (limited to 'gdb/i387-tdep.c')
-rw-r--r--gdb/i387-tdep.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c
index 6c2b6f9..1e5da17 100644
--- a/gdb/i387-tdep.c
+++ b/gdb/i387-tdep.c
@@ -108,8 +108,5 @@ print_387_status_word (status)
(status & 0x0200) != 0,
(status & 0x0100) != 0);
- /* FIXME: Someone claims this should be 7 - (status >> 11) & 7 for AIX.
- What's the story? Is the following just wrong or are differing
- notations in use? */
printf_unfiltered ("top %d\n", (status >> 11) & 7);
}