Fix -nan issue with f32
This commit is contained in:
parent
9c793067cc
commit
4f9d014994
|
@ -616,7 +616,7 @@ flt_oper:
|
|||
exp = _dtoa.exp;
|
||||
|
||||
sign = 0;
|
||||
if ((_dtoa.flags & DTOA_MINUS) && !(_dtoa.flags & DTOA_NAN))
|
||||
if (_dtoa.flags & DTOA_MINUS)
|
||||
{
|
||||
sign = '-';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue