summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2021-08-11 08:44:40 +0100
committerNick Clifton <nickc@redhat.com>2021-08-11 08:44:40 +0100
commitbda3d9fbc86950e4661188161ee643f0987d032c (patch)
treed73be978967ba00df7bd8dad7ceb4c6e416620a5
parent199bbc7a4c0d980d22bb7708be27ee383ef153d1 (diff)
downloadbinutils-gdb-bda3d9fbc86950e4661188161ee643f0987d032c.tar.gz
Fix typo in previous delta
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config/tc-tic4x.c4
2 files changed, 6 insertions, 2 deletions
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 <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.
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."));