summaryrefslogtreecommitdiffstats
path: root/sys/amd64/isa
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2001-07-12 12:21:53 +0000
committerpeter <peter@FreeBSD.org>2001-07-12 12:21:53 +0000
commit7481fc008a37c2ec251ad33a32fe3cf4e6e5b6d6 (patch)
tree4cd782aa102d2f2ec4f8a7a265712a0a0eec0c93 /sys/amd64/isa
parenta5f5f72a7b265bdf3d2cb335da4cf90306b3d84b (diff)
downloadFreeBSD-src-7481fc008a37c2ec251ad33a32fe3cf4e6e5b6d6.zip
FreeBSD-src-7481fc008a37c2ec251ad33a32fe3cf4e6e5b6d6.tar.gz
Fix another missed pcb_savefpu reference (inside NPX_DEBUG)
Diffstat (limited to 'sys/amd64/isa')
-rw-r--r--sys/amd64/isa/npx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/isa/npx.c b/sys/amd64/isa/npx.c
index f6410e9..bb1f74b 100644
--- a/sys/amd64/isa/npx.c
+++ b/sys/amd64/isa/npx.c
@@ -601,8 +601,8 @@ npxexit(p)
if (npx_exists) {
u_int masked_exceptions;
- masked_exceptions = PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_cw
- & PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
+ masked_exceptions = PCPU_GET(curpcb)->pcb_save.sv_87.sv_env.en_cw
+ & PCPU_GET(curpcb)->pcb_save.sv_87.sv_env.en_sw & 0x7f;
/*
* Log exceptions that would have trapped with the old
* control word (overflow, divide by 0, and invalid operand).
OpenPOWER on IntegriCloud