opcodes/
[deliverable/binutils-gdb.git] / gas / app.c
index e6b39d612132a0fa93540a1e6fdc266d7076fb3a..d2308596dc4e1c227a88fd83053957c7c97828c2 100644 (file)
--- a/gas/app.c
+++ b/gas/app.c
@@ -355,7 +355,7 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen)
          5: parsing a string, then go to old-state
          6: putting out \ escape in a "d string.
          7: no longer used
-         8: After putting out a .appfile string, flush until newline.
+         8: no longer used
          9: After seeing symbol char in state 3 (keep 1white after symchar)
         10: After seeing whitespace in state 9 (keep white before symchar)
         11: After seeing a symbol character in state 0 (eg a label definition)
@@ -510,11 +510,10 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen)
                ch = GET ();
              if (ch == '"')
                {
-                 PUT (' ');
-                 PUT (ch);
                  quotechar = ch;
                  state = 5;
-                 old_state = 8;
+                 old_state = 3;
+                 PUT (ch);
                }
              else
                {
@@ -635,16 +634,6 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen)
          PUT (ch);
          continue;
 
-       case 8:
-         do
-           if ((ch = GET ()) == EOF)
-             goto fromeof;
-           else
-             PUT (ch);
-         while (ch != '\n');
-         state = 0;
-         continue;
-
 #ifdef DOUBLEBAR_PARALLEL
        case 13:
          ch = GET ();
This page took 0.023552 seconds and 4 git commands to generate.