* libc/stdlib/mprec.h (Storeinc): Add parenthesis to avoid compiler

warning.
This commit is contained in:
Corinna Vinschen 2012-08-07 17:52:51 +00:00
parent f79b8c456f
commit ba35b8303c
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-08-07 Corinna Vinschen <vinschen@redhat.com>
* libc/stdlib/mprec.h (Storeinc): Add parenthesis to avoid compiler
warning.
2012-07-30 Kevin Buettner <kevinb@redhat.com>
* libc/sys/sysnecv850/crt0.S (_start): Use v850e-specific

View file

@ -98,7 +98,7 @@ typedef union { double d; __ULong i[2]; } U;
#define SI 0
#endif
#define Storeinc(a,b,c) (*(a)++ = (b) << 16 | (c) & 0xffff)
#define Storeinc(a,b,c) (*(a)++ = ((b) << 16) | ((c) & 0xffff))
/* #define P DBL_MANT_DIG */
/* Ten_pmax = floor(P*log(2)/log(5)) */