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.
This commit is contained in:
John Polstra 2004-11-03 03:10:39 +00:00
parent 726d4e6be5
commit 93df93c48e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=120682

View File

@ -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 */