aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64/include/fpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/amd64/include/fpu.h')
-rw-r--r--sys/amd64/include/fpu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/amd64/include/fpu.h b/sys/amd64/include/fpu.h
index 1474f2f41a79..67ce66121782 100644
--- a/sys/amd64/include/fpu.h
+++ b/sys/amd64/include/fpu.h
@@ -46,7 +46,7 @@
#define _MACHINE_NPX_H_
/* Environment information of floating point unit */
-struct env87 {
+struct env87 {
long en_cw; /* control word (16bits) */
long en_sw; /* status word (16bits) */
long en_tw; /* tag word (16bits) */
@@ -58,7 +58,7 @@ struct env87 {
};
/* Contents of each floating point accumulator */
-struct fpacc87 {
+struct fpacc87 {
#ifdef dontdef /* too unportable */
u_long fp_mantlo; /* mantissa low (31:0) */
u_long fp_manthi; /* mantissa high (63:32) */
@@ -70,7 +70,7 @@ struct fpacc87 {
};
/* Floating point context */
-struct save87 {
+struct save87 {
struct env87 sv_env; /* floating point control/status */
struct fpacc87 sv_ac[8]; /* accumulator contents, 0-7 */
u_long sv_ex_sw; /* status word for last exception */