summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>2004-11-03 03:10:39 +0000
committerJohn Polstra <jdp@FreeBSD.org>2004-11-03 03:10:39 +0000
commit93df93c48ea007a677d1138ece0a3efb8b0c1fa7 (patch)
treef966744b25431f6b2c006e9786ac1dd85b52efe2
parentUpdate to 2.0.6 (diff)
Fix the build on 5.x. The 80387 status word from the last exception
is no longer saved. It seems to be optional to pass this to print_387_status(), so just pass 0 instead for now.
Notes
Notes: svn path=/head/; revision=120682
-rw-r--r--lang/m3gdb/files/patch-ae2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/m3gdb/files/patch-ae b/lang/m3gdb/files/patch-ae
index adf093ca0951..8690958f734e 100644
--- a/lang/m3gdb/files/patch-ae
+++ b/lang/m3gdb/files/patch-ae
@@ -91,7 +91,7 @@
fpstatep = &pcb_savefpu;
- print_387_status (fpstatep->sv_ex_sw, (struct env387 *)fpstatep);
-+ print_387_status (fpstatep->sv_env, (struct env387 *)fpstatep);
++ print_387_status (0, (struct env387 *)fpstatep);
}
#endif /* FLOAT_INFO */