* src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.

This commit is contained in:
Akim Demaille
2001-10-10 14:58:26 +00:00
parent ee006e3a4c
commit 631aa1d3dc
5 changed files with 19 additions and 0 deletions
+4
View File
@@ -1,3 +1,7 @@
2001-10-10 Akim Demaille <[email protected]>
* src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
2001-10-04 Akim Demaille <[email protected]> 2001-10-04 Akim Demaille <[email protected]>
* src/reader.c (parse_union_decl): Push the caracters in * src/reader.c (parse_union_decl): Push the caracters in
+1
View File
@@ -1,6 +1,7 @@
Bison was originally written by Robert Corbett. It would not be what Bison was originally written by Robert Corbett. It would not be what
it is today without the invaluable help of these people: it is today without the invaluable help of these people:
Airy Andre [email protected]
Akim Demaille [email protected] Akim Demaille [email protected]
Albert Chin-A-Young [email protected] Albert Chin-A-Young [email protected]
Alexander Belopolsky [email protected] Alexander Belopolsky [email protected]
+6
View File
@@ -1,3 +1,9 @@
Makefile Makefile
*.t *.t
Makefile.in Makefile.in
mkinstalldirs
missing
config.sub
config.guess
mdate-sh
texinfo.tex
+4
View File
@@ -1,3 +1,7 @@
2001-10-08 gettextize <[email protected]>
* Makefile.in.in: Upgrade to gettext-0.10.40.
2001-10-04 gettextize <[email protected]> 2001-10-04 gettextize <[email protected]>
* Makefile.in.in: Upgrade to gettext-0.10.40. * Makefile.in.in: Upgrade to gettext-0.10.40.
+4
View File
@@ -98,6 +98,10 @@
# endif /* alloca not defined */ # endif /* alloca not defined */
#endif /* YYSTACK_USE_ALLOCA not defined */ #endif /* YYSTACK_USE_ALLOCA not defined */
#ifndef YYSTACK_USE_ALLOCA
# define YYSTACK_USE_ALLOCA 0
#endif
#if YYSTACK_USE_ALLOCA #if YYSTACK_USE_ALLOCA
# define YYSTACK_ALLOC alloca # define YYSTACK_ALLOC alloca
#else #else