[binutils-gdb] m32r: use is_whitespace()

Jan Beulich jbeulich@sourceware.org
Mon Feb 3 11:08:40 GMT 2025


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=dd8b083aebd5204e512d760e1f456df22ec0fff1

commit dd8b083aebd5204e512d760e1f456df22ec0fff1
Author: Jan Beulich <jbeulich@suse.com>
Date:   Mon Feb 3 12:06:06 2025 +0100

    m32r: use is_whitespace()
    
    Convert a lonely ISSPACE().

Diff:
---
 gas/config/tc-m32r.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gas/config/tc-m32r.c b/gas/config/tc-m32r.c
index 3505b3a13f7..ba03818f95c 100644
--- a/gas/config/tc-m32r.c
+++ b/gas/config/tc-m32r.c
@@ -989,7 +989,7 @@ assemble_two_insns (char *str1, char *str2, int parallel_p)
   {
     char *s2 = str1;
 
-    while (ISSPACE (*s2++))
+    while (is_whitespace (*s2++))
       continue;
 
     --s2;


More information about the Binutils-cvs mailing list