* parser.c (cp_parser_asm_specification_opt): Print CPP_CLOSE_PAREN
as `)', not as `('.
From-SVN: r134410
+2008-04-17 Volker Reichelt <v.reichelt@netcologne.de>
+
+ * parser.c (cp_parser_asm_specification_opt): Print CPP_CLOSE_PAREN
+ as `)', not as `('.
+
2008-02-19 Jason Merrill <jason@redhat.com>
PR c++/34950
asm_specification = cp_parser_string_literal (parser, false, false);
/* Look for the `)'. */
- cp_parser_require (parser, CPP_CLOSE_PAREN, "`('");
+ cp_parser_require (parser, CPP_CLOSE_PAREN, "%<)%>");
return asm_specification;
}