mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-21 00:07:36 +08:00
* 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>
|
2012-07-30 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
* libc/sys/sysnecv850/crt0.S (_start): Use v850e-specific
|
* libc/sys/sysnecv850/crt0.S (_start): Use v850e-specific
|
||||||
|
@ -98,7 +98,7 @@ typedef union { double d; __ULong i[2]; } U;
|
|||||||
#define SI 0
|
#define SI 0
|
||||||
#endif
|
#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 */
|
/* #define P DBL_MANT_DIG */
|
||||||
/* Ten_pmax = floor(P*log(2)/log(5)) */
|
/* Ten_pmax = floor(P*log(2)/log(5)) */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user