]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
m32r: use is_whitespace()
authorJan Beulich <jbeulich@suse.com>
Mon, 3 Feb 2025 11:06:06 +0000 (12:06 +0100)
committerJan Beulich <jbeulich@suse.com>
Mon, 3 Feb 2025 11:06:06 +0000 (12:06 +0100)
Convert a lonely ISSPACE().

gas/config/tc-m32r.c

index 3505b3a13f7aecfbe45f22296fc5cb9bad354ae2..ba03818f95c1b286b509c750b71aab66d14dad2e 100644 (file)
@@ -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;