[v2,25/65] m32r: use is_whitespace()

Message ID a4c991c3-0f2b-425e-a927-3d553e78233f@suse.com
State New
Headers
Series gas: whitespace handling |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_binutils_build--master-arm fail Patch failed to apply
linaro-tcwg-bot/tcwg_binutils_build--master-aarch64 fail Patch failed to apply

Commit Message

Jan Beulich Jan. 27, 2025, 4:23 p.m. UTC
  Convert a lonely ISSPACE().
---
v2: New.
  

Patch

--- a/gas/config/tc-m32r.c
+++ b/gas/config/tc-m32r.c
@@ -989,7 +989,7 @@  assemble_two_insns (char *str1, char *st
   {
     char *s2 = str1;
 
-    while (ISSPACE (*s2++))
+    while (is_whitespace (*s2++))
       continue;
 
     --s2;