From 566c3ca2de98761f9039e49ca5f68ee1a9ad73c4 Mon Sep 17 00:00:00 2001 From: Ori Bernstein Date: Mon, 8 Feb 2021 15:45:11 -0800 Subject: ape: sync flaot.h macros with u.h The float.h macros got out of sync with u.h, some of them missing and some of them being incorrect. This change brings them back in line. --- 386/include/ape/float.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '386/include') diff --git a/386/include/ape/float.h b/386/include/ape/float.h index 4df158e51..6de1e7bb4 100644 --- a/386/include/ape/float.h +++ b/386/include/ape/float.h @@ -52,9 +52,10 @@ union FPdbleword #ifdef _PLAN9_SOURCE /* FCR */ #define FPINEX (1<<5) -#define FPOVFL (1<<3) #define FPUNFL ((1<<4)|(1<<1)) +#define FPOVFL (1<<3) #define FPZDIV (1<<2) +#define FPINVAL (1<<0) #define FPRNR (0<<10) #define FPRZ (3<<10) #define FPRPINF (2<<10) @@ -69,5 +70,6 @@ union FPdbleword #define FPAOVFL FPOVFL #define FPAUNFL FPUNFL #define FPAZDIV FPZDIV +#define FPAINVAL FPINVAL #endif #endif /* __FLOAT */ -- cgit v1.2.3