]> gcc.gnu.org Git - gcc.git/commitdiff
*** empty log message ***
authorJames Van Artsdalen <jrv@gnu.org>
Sun, 24 May 1992 18:57:01 +0000 (18:57 +0000)
committerJames Van Artsdalen <jrv@gnu.org>
Sun, 24 May 1992 18:57:01 +0000 (18:57 +0000)
From-SVN: r1073

gcc/reg-stack.c

index 3f40732e079831678875122213e93df33484422a..8b150050db90abffde58c1ef5152ab0e7187c2f0 100644 (file)
@@ -561,7 +561,6 @@ constrain_asm_operands (n_operands, operands, operand_constraints,
              case '=':
              case '+':
              case '?':
-             case '#':
              case '&':
              case '!':
              case '*':
@@ -569,6 +568,11 @@ constrain_asm_operands (n_operands, operands, operand_constraints,
                /* Ignore these. */
                break;
 
+             case '#':
+               /* Ignore rest of this alternative. */
+               while (*p && *p != ',') p++;
+               break;
+
              case '0':
              case '1':
              case '2':
This page took 0.067474 seconds and 5 git commands to generate.