diff options
author | Elliott Hughes <enh@google.com> | 2014-06-09 14:33:39 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-06-09 15:25:15 -0700 |
commit | 89d61243f2f05748c0198b3c0e4766c2df2f4434 (patch) | |
tree | 69f025a26e942eccac1be49ae30aa5af925f2467 /libm/include/mips/machine/fenv.h | |
parent | 8c054c51c3324d36dc9ed1cf50229bae8a3f875c (diff) | |
download | bionic-89d61243f2f05748c0198b3c0e4766c2df2f4434.zip bionic-89d61243f2f05748c0198b3c0e4766c2df2f4434.tar.gz bionic-89d61243f2f05748c0198b3c0e4766c2df2f4434.tar.bz2 |
Move mips fenv implementation details into fenv.c.
Change-Id: I2415e4808e40c2981d016c01969ba14ea22bf82e
Diffstat (limited to 'libm/include/mips/machine/fenv.h')
-rw-r--r-- | libm/include/mips/machine/fenv.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libm/include/mips/machine/fenv.h b/libm/include/mips/machine/fenv.h index 37f0f9c..689e1cb 100644 --- a/libm/include/mips/machine/fenv.h +++ b/libm/include/mips/machine/fenv.h @@ -87,19 +87,12 @@ typedef __uint32_t fexcept_t; #define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \ FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW) -#define _FCSR_CAUSE_SHIFT 10 -#define _ENABLE_SHIFT 5 -#define _FCSR_ENABLE_MASK (FE_ALL_EXCEPT << _ENABLE_SHIFT) - /* Rounding modes */ #define FE_TONEAREST 0x0000 #define FE_TOWARDZERO 0x0001 #define FE_UPWARD 0x0002 #define FE_DOWNWARD 0x0003 -#define _FCSR_RMODE_SHIFT 0 -#define _FCSR_RMASK 0x3 - __END_DECLS #endif /* !_MIPS_FENV_H_ */ |