* real.c (encode_ieee_single): Ensure proper promotion.

From-SVN: r73232
This commit is contained in:
Alexander Kabaev 2003-11-03 23:27:51 +00:00 committed by Loren J. Rittle
parent 2b2de389ac
commit 930177d9f0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-11-03 Alexander Kabaev <ak03@gte.com>
* real.c (encode_ieee_single): Ensure proper promotion.
2003-11-03 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* doc/contrib.texi: Add Giovanni Bajo, Dara Hazeghi, Falk Hueffner,

View File

@ -2536,9 +2536,10 @@ encode_ieee_single (const struct real_format *fmt, long *buf,
const REAL_VALUE_TYPE *r)
{
unsigned long image, sig, exp;
unsigned long sign = r->sign;
bool denormal = (r->sig[SIGSZ-1] & SIG_MSB) == 0;
image = r->sign << 31;
image = sign << 31;
sig = (r->sig[SIGSZ-1] >> (HOST_BITS_PER_LONG - 24)) & 0x7fffff;
switch (r->class)