From bda3d9fbc86950e4661188161ee643f0987d032c Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 11 Aug 2021 08:44:40 +0100 Subject: Fix typo in previous delta --- gas/ChangeLog | 4 ++++ gas/config/tc-tic4x.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 885c9d8..14666b4 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 c00121c..7aac7b3 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.")); -- cgit v1.1