Add preprocessor indentation for llogb macro in tgmath.h.

* math/tgmath.h [__GLIBC_USE (IEC_60559_BFP_EXT)] (llogb): Add
	preprocessor indentation inside #if.
This commit is contained in:
Joseph Myers 2016-12-20 21:23:04 +00:00
parent 06fea2257d
commit 60c07b058f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2016-12-20 Joseph Myers <joseph@codesourcery.com>
* math/tgmath.h [__GLIBC_USE (IEC_60559_BFP_EXT)] (llogb): Add
preprocessor indentation inside #if.
2016-12-20 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
* math/libm-test.inc (fmt_ftostr): New function.

View File

@ -439,7 +439,7 @@
#if __GLIBC_USE (IEC_60559_BFP_EXT)
/* Like ilogb, but returning long int. */
#define llogb(Val) __TGMATH_UNARY_REAL_RET_ONLY (Val, long int, llogb)
# define llogb(Val) __TGMATH_UNARY_REAL_RET_ONLY (Val, long int, llogb)
/* Return value with maximum magnitude. */
# define fmaxmag(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmaxmag)