summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2004-07-20 05:37:15 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2004-07-20 05:37:15 +0000
commit3e22e43c4a063895402e0f3b40def62b205556b4 (patch)
treed496d9361a4f153c7675e24f666197723997eac6
parent62f176e347ccea154b17b7dde12bba030cb29781 (diff)
Move tag word to the right location in `struct envxmm'.
ok deraadt@
-rw-r--r--sys/arch/i386/include/npx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/npx.h b/sys/arch/i386/include/npx.h
index 810c7817bee..f3b0fd1343c 100644
--- a/sys/arch/i386/include/npx.h
+++ b/sys/arch/i386/include/npx.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: npx.h,v 1.7 2004/06/13 21:49:16 niklas Exp $ */
+/* $OpenBSD: npx.h,v 1.8 2004/07/20 05:37:14 kettenis Exp $ */
/* $NetBSD: npx.h,v 1.11 1994/10/27 04:16:11 cgd Exp $ */
/*-
@@ -90,8 +90,8 @@ struct save87 {
struct envxmm {
/*0*/ uint16_t en_cw; /* FPU Control Word */
uint16_t en_sw; /* FPU Status Word */
- uint8_t en_rsvd0;
uint8_t en_tw; /* FPU Tag Word (abridged) */
+ uint8_t en_rsvd0;
uint16_t en_opcode; /* FPU Opcode */
uint32_t en_fip; /* FPU Instruction Pointer */
uint16_t en_fcs; /* FPU IP selector */