From 7481fc008a37c2ec251ad33a32fe3cf4e6e5b6d6 Mon Sep 17 00:00:00 2001 From: peter Date: Thu, 12 Jul 2001 12:21:53 +0000 Subject: Fix another missed pcb_savefpu reference (inside NPX_DEBUG) --- sys/amd64/isa/npx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/amd64/isa') 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). -- cgit v1.1