* libc/stdlib/mprec.h (Storeinc): Add parenthesis to avoid compiler
warning.
This commit is contained in:
parent
f79b8c456f
commit
ba35b8303c
|
@ -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
|
||||
|
|
|
@ -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)) */
|
||||
|
|
Loading…
Reference in New Issue