MIPS: ieee754.h: Supplement comments for special values
authorMaciej W. Rozycki <macro@linux-mips.org>
Fri, 3 Apr 2015 22:24:09 +0000 (23:24 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 7 Apr 2015 23:08:44 +0000 (01:08 +0200)
Add the remaining missing comments for IEEE 754 special value array
indices.  Reindent macro definitions for consistency.

Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/9671/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/math-emu/ieee754.h

index 2d0df0ece9846264b11b53d1fb915e0023bfa127..22d803d8feeaa165d6173ef1ac8b3804f23fce66 100644 (file)
@@ -257,23 +257,23 @@ static inline int ieee754_sxtest(unsigned n)
 union ieee754sp ieee754sp_dump(char *s, union ieee754sp x);
 union ieee754dp ieee754dp_dump(char *s, union ieee754dp x);
 
-#define IEEE754_SPCVAL_PZERO   0
-#define IEEE754_SPCVAL_NZERO   1
-#define IEEE754_SPCVAL_PONE    2
-#define IEEE754_SPCVAL_NONE    3
-#define IEEE754_SPCVAL_PTEN    4
-#define IEEE754_SPCVAL_NTEN    5
-#define IEEE754_SPCVAL_PINFINITY       6
-#define IEEE754_SPCVAL_NINFINITY       7
-#define IEEE754_SPCVAL_INDEF   8
-#define IEEE754_SPCVAL_PMAX    9       /* +max norm */
-#define IEEE754_SPCVAL_NMAX    10      /* -max norm */
-#define IEEE754_SPCVAL_PMIN    11      /* +min norm */
-#define IEEE754_SPCVAL_NMIN    12      /* -min norm */
-#define IEEE754_SPCVAL_PMIND   13      /* +min denorm */
-#define IEEE754_SPCVAL_NMIND   14      /* -min denorm */
-#define IEEE754_SPCVAL_P1E31   15      /* + 1.0e31 */
-#define IEEE754_SPCVAL_P1E63   16      /* + 1.0e63 */
+#define IEEE754_SPCVAL_PZERO           0       /* +0.0 */
+#define IEEE754_SPCVAL_NZERO           1       /* -0.0 */
+#define IEEE754_SPCVAL_PONE            2       /* +1.0 */
+#define IEEE754_SPCVAL_NONE            3       /* -1.0 */
+#define IEEE754_SPCVAL_PTEN            4       /* +10.0 */
+#define IEEE754_SPCVAL_NTEN            5       /* -10.0 */
+#define IEEE754_SPCVAL_PINFINITY       6       /* +inf */
+#define IEEE754_SPCVAL_NINFINITY       7       /* -inf */
+#define IEEE754_SPCVAL_INDEF           8       /* quiet NaN */
+#define IEEE754_SPCVAL_PMAX            9       /* +max norm */
+#define IEEE754_SPCVAL_NMAX            10      /* -max norm */
+#define IEEE754_SPCVAL_PMIN            11      /* +min norm */
+#define IEEE754_SPCVAL_NMIN            12      /* -min norm */
+#define IEEE754_SPCVAL_PMIND           13      /* +min denorm */
+#define IEEE754_SPCVAL_NMIND           14      /* -min denorm */
+#define IEEE754_SPCVAL_P1E31           15      /* + 1.0e31 */
+#define IEEE754_SPCVAL_P1E63           16      /* + 1.0e63 */
 
 extern const union ieee754dp __ieee754dp_spcvals[];
 extern const union ieee754sp __ieee754sp_spcvals[];