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.
This commit is contained in:
Ori Bernstein 2021-02-08 15:45:11 -08:00
parent 491fe25158
commit 566c3ca2de
8 changed files with 97 additions and 55 deletions

View file

@ -57,6 +57,7 @@ union FPdbleword
#define FPZDIV (1<<24)
#define FPRNR (0<<30)
#define FPRZ (1<<30)
#define FPINVAL (1<<27)
#define FPRPINF (2<<30)
#define FPRNINF (3<<30)
#define FPRMASK (3<<30)
@ -66,8 +67,9 @@ union FPdbleword
#define FPPMASK 0
/* FSR */
#define FPAINEX (1<<5)
#define FPAOVFL (1<<8)
#define FPAUNFL (1<<7)
#define FPAZDIV (1<<6)
#define FPAUNFL (1<<7)
#define FPAOVFL (1<<8)
#define FPAINVAL (1<<9)
#endif
#endif /* __FLOAT */