gas/app.c don't throw away spaces before slash
authorAlan Modra <amodra@gmail.com>
Fri, 19 Mar 2021 03:54:05 +0000 (14:24 +1030)
committerAlan Modra <amodra@gmail.com>
Fri, 19 Mar 2021 09:42:30 +0000 (20:12 +1030)
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.

gas/ChangeLog
gas/app.c

index 2953d5dc1e14b8283bf93c9fa315088512283073..66768110c61335367624e9546474fe47fa6c2a58 100644 (file)
@@ -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.
index 89b39130bf10a497890b1d318a631f8b3ff64dcf..712bffef85171162ad3696d560f48caed8fb6ef9 100644 (file)
--- 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))
            {