[binutils-gdb] gas/app.c don't throw away spaces before slash

Alan Modra amodra@sourceware.org
Fri Mar 19 09:45:52 GMT 2021


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

commit 826b97d42de2bf5162e34a690898598cb22332fb
Author: Alan Modra <amodra@gmail.com>
Date:   Fri Mar 19 14:24:05 2021 +1030

    gas/app.c don't throw away spaces before slash
    
    I don't know really why we should lose a space before a '/'.  Possibly
    it would make sense if '/' started a comment, but otherwise no.
    
            * app.c (do_scrub_chars): Don't lose spaces before a slash.

Diff:
---
 gas/ChangeLog | 4 ++++
 gas/app.c     | 1 -
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index 2953d5dc1e1..66768110c61 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2021-03-19  Alan Modra  <amodra@gmail.com>
+
+	* app.c (do_scrub_chars): Don't lose spaces before a slash.
+
 2021-03-18  Christian Groessler  <chris@groessler.org>
 
 	* config/tc-z8k.c (apply_fix): Handle 7-bit relocations correctly.
diff --git a/gas/app.c b/gas/app.c
index 89b39130bf1..712bffef851 100644
--- a/gas/app.c
+++ b/gas/app.c
@@ -874,7 +874,6 @@ do_scrub_chars (size_t (*get) (char *, size_t), char *tostart, size_t tolen)
 	    }
 #endif
 	  if (IS_COMMENT (ch)
-	      || ch == '/'
 	      || IS_LINE_SEPARATOR (ch)
 	      || IS_PARALLEL_SEPARATOR (ch))
 	    {


More information about the Binutils-cvs mailing list