[binutils-gdb] mn10300: use is_whitespace()
Jan Beulich
jbeulich@sourceware.org
Mon Feb 3 11:17:12 GMT 2025
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=8216a29a06029063da864aca2b8015e3e424a0c0
commit 8216a29a06029063da864aca2b8015e3e424a0c0
Author: Jan Beulich <jbeulich@suse.com>
Date: Mon Feb 3 12:15:07 2025 +0100
mn10300: use is_whitespace()
Convert open-coded checks as well as ISSPACE() uses. At the same time
use is_end_of_stmt() instead of kind-of-open-coded checks in adjacent
code.
Diff:
---
gas/config/tc-mn10300.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gas/config/tc-mn10300.c b/gas/config/tc-mn10300.c
index 3fc7cac823a..2167f408b29 100644
--- a/gas/config/tc-mn10300.c
+++ b/gas/config/tc-mn10300.c
@@ -1241,7 +1241,7 @@ md_assemble (char *str)
int match;
/* Get the opcode. */
- for (s = str; *s != '\0' && !ISSPACE (*s); s++)
+ for (s = str; !is_end_of_stmt (*s) && !is_whitespace (*s); s++)
;
if (*s != '\0')
*s++ = '\0';
@@ -1255,7 +1255,7 @@ md_assemble (char *str)
}
str = s;
- while (ISSPACE (*str))
+ while (is_whitespace (*str))
++str;
input_line_pointer = str;
@@ -1304,7 +1304,7 @@ md_assemble (char *str)
next_opindex = 0;
}
- while (*str == ' ' || *str == ',')
+ while (is_whitespace (*str) || *str == ',')
++str;
if (operand->flags & MN10300_OPERAND_RELAX)
@@ -1764,7 +1764,7 @@ md_assemble (char *str)
str = input_line_pointer;
input_line_pointer = hold;
- while (*str == ' ' || *str == ',')
+ while (is_whitespace (*str) || *str == ',')
++str;
}
@@ -1815,10 +1815,10 @@ md_assemble (char *str)
break;
}
- while (ISSPACE (*str))
+ while (is_whitespace (*str))
++str;
- if (*str != '\0')
+ if (!is_end_of_stmt (*str))
as_bad (_("junk at end of line: `%s'"), str);
input_line_pointer = str;
More information about the Binutils-cvs
mailing list