[binutils-gdb] dlx: use is_end_of_stmt()

Jan Beulich jbeulich@sourceware.org
Fri Mar 7 07:13:24 GMT 2025


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

commit 333596190ecd059516e9ff15588205389e2f3acb
Author: Jan Beulich <jbeulich@suse.com>
Date:   Fri Mar 7 08:11:33 2025 +0100

    dlx: use is_end_of_stmt()
    
    ... instead of open-coding it.

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

diff --git a/gas/config/tc-dlx.c b/gas/config/tc-dlx.c
index b1ff09d77af..8d830fe705a 100644
--- a/gas/config/tc-dlx.c
+++ b/gas/config/tc-dlx.c
@@ -217,7 +217,7 @@ s_proc (int end_p)
 
       current_name = current_label = NULL;
       SKIP_WHITESPACE ();
-      while (!is_end_of_line[(unsigned char) *input_line_pointer])
+      while (!is_end_of_stmt (*input_line_pointer))
         input_line_pointer++;
     }
   else


More information about the Binutils-cvs mailing list