Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/common/sf_round.c')
-rw-r--r--newlib/libm/common/sf_round.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/common/sf_round.c b/newlib/libm/common/sf_round.c
index 6c9087db0..1bf60890c 100644
--- a/newlib/libm/common/sf_round.c
+++ b/newlib/libm/common/sf_round.c
@@ -38,7 +38,7 @@
w &= 0x80000000;
if (exponent_less_127 == -1)
/* Result is +1.0 or -1.0. */
- w |= (127 << 23);
+ w |= ((__uint32_t)127 << 23);
}
else
{