From: Nick Clifton Date: Wed, 11 Aug 2021 07:44:40 +0000 (+0100) Subject: Fix typo in previous delta X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bda3d9fbc86950e4661188161ee643f0987d032c;p=binutils-gdb.git Fix typo in previous delta --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 885c9d8dee5..14666b4b1f0 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2021-08-11 Nick Clifton + + * config/tc-tic4x.c (tic4x_gen_to_words): Fix typo. + 2021-08-10 Nick Clifton * po/ru.po: Updated Russian translation. diff --git a/gas/config/tc-tic4x.c b/gas/config/tc-tic4x.c index c00121c30ba..7aac7b38a14 100644 --- a/gas/config/tc-tic4x.c +++ b/gas/config/tc-tic4x.c @@ -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."));