]> git.saurik.com Git - bison.git/blobdiff - tests/regression.at
(YYSTACK_ALLOC_MAXIMUM): New macro.
[bison.git] / tests / regression.at
index c199ecc112ecbfa656c7e84fbb6c5061d1df34b4..dd87ef2d849c57cbf2767b30b7a55c3b273d29b9 100644 (file)
@@ -1,5 +1,5 @@
 # Bison Regressions.                               -*- Autotest -*-
 # Bison Regressions.                               -*- Autotest -*-
-# Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -319,9 +319,9 @@ int yylex (void);
 %}
 [%token MYEOF 0 "end of file"
 %token 'a' "a"
 %}
 [%token MYEOF 0 "end of file"
 %token 'a' "a"
-%token b "b"
-%token c 'c'
-%token 'd' d
+%token B_TOKEN "b"
+%token C_TOKEN 'c'
+%token 'd' D_TOKEN
 %%
 exp: "a";
 ]])
 %%
 exp: "a";
 ]])
@@ -727,15 +727,16 @@ member: STRING
 AT_LALR1_CC_IF(
 [/* A C++ error reporting function. */
 void
 AT_LALR1_CC_IF(
 [/* A C++ error reporting function. */
 void
-yy::Parser::error_ ()
+yy::parser::error (const location&, const std::string& m)
 {
 {
-  std::cerr << message << std::endl;
+  std::cerr << m << std::endl;
 }
 
 int
 }
 
 int
-yyparse (void)
+yyparse ()
 {
 {
-  yy::Parser parser (!!YYDEBUG);
+  yy::parser parser;
+  parser.set_debug_level (!!YYDEBUG);
   return parser.parse ();
 }
 ],
   return parser.parse ();
 }
 ],