diff options
author | Ori Bernstein <ori@eigenstate.org> | 2021-02-08 15:45:11 -0800 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2021-02-08 15:45:11 -0800 |
commit | 566c3ca2de98761f9039e49ca5f68ee1a9ad73c4 (patch) | |
tree | 0092cb34a16eab20c8e34eb72c017fd10c069875 /386/include/ape/float.h | |
parent | 491fe2515890fc4e624af72f15775fd48510486a (diff) | |
download | plan9front-566c3ca2de98761f9039e49ca5f68ee1a9ad73c4.tar.xz |
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.
Diffstat (limited to '386/include/ape/float.h')
-rw-r--r-- | 386/include/ape/float.h | 4 |
1 files changed, 3 insertions, 1 deletions
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 */ |