parser.c (cp_parser_asm_definition): Properly consume scope operator tokens preceding...
authorJan Beulich <jbeulich@novell.com>
Thu, 12 Aug 2004 09:34:16 +0000 (09:34 +0000)
committerJan Beulich <jbeulich@gcc.gnu.org>
Thu, 12 Aug 2004 09:34:16 +0000 (09:34 +0000)
cp/
2004-08-12 Jan Beulich <jbeulich@novell.com>

* parser.c (cp_parser_asm_definition): Properly consume scope operator
tokens preceding the clobbers. Don't check for scope operator
following inputs. Simplify inputs handling to match that now used for
clobbers.

testsuite/
2004-08-12 Jan Beulich <jbeulich@novell.com>

* g++.dg/ext/asm5.C: New.

From-SVN: r85860

gcc/cp/ChangeLog
gcc/cp/parser.c
gcc/testsuite/ChangeLog

index 2bc5a854100f4060f17b483f66e33ff509db27d1..a80e8d2bad4e58158b1acb1994fc98b1e52bb284 100644 (file)
@@ -1,3 +1,10 @@
+2004-08-12 Jan Beulich <jbeulich@novell.com>
+
+       * parser.c (cp_parser_asm_definition): Properly consume scope operator
+       tokens preceding the clobbers. Don't check for scope operator
+       following inputs. Simplify inputs handling to match that now used for
+       clobbers.
+
 2004-08-11  Mark Mitchell  <mark@codesourcery.com>
 
        PR c++/16698
index a8854dcad2d7585eedc6a0da13cfa6d5e1b484dd..2193bacc3e6c802a6d6d7736d6e2325f790aa55f 100644 (file)
@@ -10367,25 +10367,18 @@ cp_parser_asm_definition (cp_parser* parser)
       /* If the next token is `::', there are no outputs, and the
         next token is the beginning of the inputs.  */
       else if (cp_lexer_next_token_is (parser->lexer, CPP_SCOPE))
-       {
-         /* Consume the `::' token.  */
-         cp_lexer_consume_token (parser->lexer);
-         /* The inputs are coming next.  */
-         inputs_p = true;
-       }
+       /* The inputs are coming next.  */
+       inputs_p = true;
 
       /* Look for inputs.  */
       if (inputs_p
          || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
        {
-         if (!inputs_p)
-           /* Consume the `:'.  */
-           cp_lexer_consume_token (parser->lexer);
+         /* Consume the `:' or `::'.  */
+         cp_lexer_consume_token (parser->lexer);
          /* Parse the output-operands.  */
          if (cp_lexer_next_token_is_not (parser->lexer,
                                          CPP_COLON)
-             && cp_lexer_next_token_is_not (parser->lexer,
-                                            CPP_SCOPE)
              && cp_lexer_next_token_is_not (parser->lexer,
                                             CPP_CLOSE_PAREN))
            inputs = cp_parser_asm_operand_list (parser);
@@ -10398,9 +10391,8 @@ cp_parser_asm_definition (cp_parser* parser)
       if (clobbers_p
          || cp_lexer_next_token_is (parser->lexer, CPP_COLON))
        {
-         if (!clobbers_p)
-           /* Consume the `:'.  */
-           cp_lexer_consume_token (parser->lexer);
+         /* Consume the `:' or `::'.  */
+         cp_lexer_consume_token (parser->lexer);
          /* Parse the clobbers.  */
          if (cp_lexer_next_token_is_not (parser->lexer,
                                          CPP_CLOSE_PAREN))
index 93a6e56c99a39c22fe560f547a4672e2cfd21971..cf258754eacd62b02f99395dc5a59ebec651e6c1 100644 (file)
@@ -1,3 +1,7 @@
+2004-08-12 Jan Beulich <jbeulich@novell.com>
+
+       * g++.dg/ext/asm5.C: New.
+
 2004-08-11  Mark Mitchell  <mark@codesourcery.com>
 
        PR c++/16698