mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-18 00:32:30 +08:00
Fix typo in previous delta
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2021-08-11 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* config/tc-tic4x.c (tic4x_gen_to_words): Fix typo.
|
||||
|
||||
2021-08-10 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* po/ru.po: Updated Russian translation.
|
||||
|
@ -383,9 +383,9 @@ tic4x_gen_to_words (FLONUM_TYPE flonum, LITTLENUM_TYPE *words, int precision)
|
||||
|
||||
/* 0.0e0 or NaN seen. */
|
||||
if (flonum.low > flonum.leader /* = 0.0e0 */
|
||||
|| flonum.sign == 0) /* = NaN */
|
||||
|| flonum.sign == 0 /* = NaN */
|
||||
|| flonum.sign == 'Q' || flonum.sign == 'q' /* = QNaN */
|
||||
|| flonum.sign == 'S' || flonum.sign == 's' /* = SNaN */
|
||||
|| flonum.sign == 'S' || flonum.sign == 's') /* = SNaN */
|
||||
{
|
||||
if (flonum.sign != '+' && flonum.sign != '-')
|
||||
as_bad (_("Nan, using zero."));
|
||||
|
Reference in New Issue
Block a user