diff options
Diffstat (limited to 'arch/mips/math-emu/ieee754sp.c')
-rw-r--r-- | arch/mips/math-emu/ieee754sp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/math-emu/ieee754sp.c b/arch/mips/math-emu/ieee754sp.c index d348efe91445..ba88301579c2 100644 --- a/arch/mips/math-emu/ieee754sp.c +++ b/arch/mips/math-emu/ieee754sp.c | |||
@@ -38,7 +38,7 @@ int ieee754sp_isnan(union ieee754sp x) | |||
38 | static inline int ieee754sp_issnan(union ieee754sp x) | 38 | static inline int ieee754sp_issnan(union ieee754sp x) |
39 | { | 39 | { |
40 | assert(ieee754sp_isnan(x)); | 40 | assert(ieee754sp_isnan(x)); |
41 | return (SPMANT(x) & SP_MBIT(SP_FBITS-1)); | 41 | return SPMANT(x) & SP_MBIT(SP_FBITS - 1); |
42 | } | 42 | } |
43 | 43 | ||
44 | 44 | ||