From: Akim Demaille Date: Wed, 10 Oct 2001 14:59:46 +0000 (+0000) Subject: * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA. X-Git-Tag: BISON-1_29d^0 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/bf316197623e18acc27201a8f3964b1e1606569f?ds=sidebyside * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA. Use `#if , not `#ifndef'. Reported by Airy Andre. --- diff --git a/ChangeLog b/ChangeLog index 145a15ec..4e7936dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,8 +2,8 @@ Version 1.29d. * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA. - Use `#if YYSTACK_USE_ALLOCA', not `#ifdef'. - Reported by Airy ANDRE. + Use `#if !YYSTACK_USE_ALLOCA', not `#ifndef'. + Reported by Airy Andre. 2001-10-10 Akim Demaille diff --git a/src/bison.simple b/src/bison.simple index c62708ff..c1b90e98 100644 --- a/src/bison.simple +++ b/src/bison.simple @@ -420,7 +420,7 @@ yyparse (YYPARSE_PARAM_ARG) yystacksize *= 2; if (yystacksize > YYMAXDEPTH) yystacksize = YYMAXDEPTH; -# if YYSTACK_USE_ALLOCA +# if !YYSTACK_USE_ALLOCA yyfree_stacks = 1; # endif yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp));