Add support for ColdFire MAC instructions and tidy up support for other m68k
[deliverable/binutils-gdb.git] / gas / app.c
index d94766422f4ff96765212a38ceaa74c1f99d2812..1dbc49a8cd894f79667966a7ce47314874d6e914 100644 (file)
--- a/gas/app.c
+++ b/gas/app.c
@@ -684,7 +684,11 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen)
       else if (state == 14 || state == 15)
        {
          if (ch == ')')
-           state -= 14;
+           {
+             state -= 14;
+             PUT (ch);
+             ch = GET ();
+           }
          else
            {
              PUT (ch);
@@ -1308,13 +1312,11 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen)
          /* Some relatively `normal' character.  */
          if (state == 0)
            {
-             if (IS_SYMBOL_COMPONENT (ch))
-               state = 11;     /* Now seeing label definition.  */
+             state = 11;       /* Now seeing label definition.  */
            }
          else if (state == 1)
            {
-             if (IS_SYMBOL_COMPONENT (ch))
-               state = 2;      /* Ditto.  */
+             state = 2;        /* Ditto.  */
            }
          else if (state == 9)
            {
This page took 0.022878 seconds and 4 git commands to generate.