ed
1126c5fc83
Let both yacc and lex generate code that passes -Wold-style-definition.
...
Both these tools emit code where several functions have no `void'
keyword placed in the arugment list when the function has no arguments.
2009-12-30 22:46:08 +00:00
delphij
ec5327b1cd
Indent the else path, reduce diff against OpenBSD.
2008-07-18 23:35:31 +00:00
kevlo
08fb11c891
Fix a longstanding bug, from Otto Moerbeck:
...
if we're reducing a rule that has an empty
right hand side and the yacc stackpointer is pointing at the very
end of the allocated stack, we end up accessing the stack out of
bounds by the implicit $$ = $1 action
Obtained from: OpenBSD
2008-07-18 15:05:14 +00:00
davidc
7df8d20337
Add __unused to the declaration of yyrcsid in a more portable way.
...
Discussed with: alfred, bde, jmallett, obrien
2003-02-12 18:03:55 +00:00
davidc
ff5d2916db
Backout my previous commit as requested. This solution generates
...
parsers that are non-portable.
2003-02-08 17:23:22 +00:00
davidc
583bf78cf8
Add __unused to the declaration of yyrcsid.
2003-02-07 03:39:27 +00:00
ru
6d38d7dc3c
No longer needed to #ifdef __FBSDID, this is now handled by Makefile.inc1.
2002-04-09 11:39:05 +00:00
dwmalone
d9613ea383
Style improvements recommended by Bruce as a follow up to some
...
of the recent WARNS commits. The idea is:
1) FreeBSD id tags should follow vendor tags.
2) Vendor tags should not be compiled (though copyrights probably should).
3) There should be no blank line between including cdefs and __FBSDIF.
2001-12-10 21:13:08 +00:00
imp
8f226dc222
Only use __FBSDID if it is defined. This fixes the 4.4-release (but
...
not stable) -> current upgrade path.
Reviewed by: markm
2001-12-08 02:28:16 +00:00
markm
c73844e02d
Use __FBSDID().
2001-12-02 21:24:03 +00:00
markm
4a974575ba
WARNS=2 and s/register//.
...
Set NO_WERROR=true because there are some flex(1) issues that need
to be dealt with.
2001-12-01 17:34:42 +00:00
peter
589564befb
Have yacc use a prototype for yygrowstack(void) on ANSI compilers.
...
This fixes a gcc warning with -Wmissing-prototypes.
2001-02-19 01:10:01 +00:00
bde
668e3ec014
Fixed breakage of K&R support in rev.1.26. yyparse() was defined as
...
`int yyparse(;) ; { ... }' in K&R mode. Getting rid of the second
unwanted semicolon in this made the ifdef tangle more tangled than
before. Fixed a backwards comment in the tangle.
2000-01-17 02:04:06 +00:00
bde
6b3da1fe21
Fixed breakage of K&R support in rev.1.8 of output.c: don't generate
...
#elif. Cleaned up rev.1.8 a bit more: generate the #include of
<stdio.h> closer to the code that needs it.
2000-01-17 01:51:29 +00:00
obrien
811b0ef57d
Make "YYPARSE_PARAM" and "YYPARSE_PARAM_TYPE" C++/ANSI-C clean.
1999-10-28 15:18:05 +00:00
obrien
3a2839fec9
Allow a user specified parameter to 'yyparse()', in a manner similar to
...
that used by bison. The names are consistent with the bison implementation
but this one also allows the type of the parameter to be specified.
For a desired prototype of:
int yyparse __P((struct yyresult *));
and compile like this:
yacc -dv grammar.y
cc -c -DYYPARSE_PARAM_TYPE="struct yyresult *" \
-DYYPARSE_PARAM="parm" y.tab.c
and use like this:
${
#include "usrtypes.h"
#include "usrproto.h"
}$
%token NUMBER
%%
goal : NUMBER
{
parm->value = yylval;
} ;
If YYPARSE_PARAM_TYPE isn't specified then "void *" is the default type.
If YYPARSE_PARAM is not specified then the generated code behaves exactly
as traditional byacc.
PR: 13562
Submitted by: W Gerald Hicks <wghicks@bellsouth.net>
1999-10-27 17:51:37 +00:00
peter
3b842d34e8
$Id$ -> $FreeBSD$
1999-08-28 01:08:13 +00:00
obrien
a0aa5ed261
Revert the past 3 commits to what should have been the rev 1.18 -> rev 1.19
...
change. (doesn't anybody read commit logs and look at the diffs?)
1999-07-30 15:05:32 +00:00
des
ac38154cc5
Hyphens are not legal characters in a C identifier.
...
Broken by: hoek
1999-07-30 14:52:23 +00:00
hoek
eb38eb9c63
Even better fix for last commit: rename rcsid[] to _yacc-parser_rcsid[]
...
(one always gets these ideas just after the commit).
1999-07-30 13:04:19 +00:00
hoek
32b04adb4f
Don't output rcsid into the output parser. It may have already been
...
defined in an input file such as src/bin/sh/arith.y. #if 0 it out. I did
not add $Id$ back into the comment header (as removed from last commit).
1999-07-30 12:53:21 +00:00
obrien
ffffe6481b
Only output `rcsid' (set to our Id string) into the resulting parser file.
...
Don't output `sccsid' (set to an anchient UCB Id string) into the parser file.
Submitted by: bde
1999-07-30 06:40:00 +00:00
obrien
d291b1f656
Follow the directions in the comments and add our Id string to the output
...
file.
1999-07-29 09:59:06 +00:00
obrien
ecc95f8e7b
* Don't assume realloc() can take NULL as first arg. Yacc needs to
...
generate portable code...
* Correctly define yyparse() (ie, K&R vs. C++/ANSI-C)
Obtained from: OpenBSD revs 1.5 & 1.10
1999-07-29 09:42:14 +00:00
obrien
0f208ce6bb
YYRECOVERING(), not YYRECOVERING.
...
Obtained from: OpenBSD rev 1.8 (approved by Robert Corbett)
1999-07-29 08:47:30 +00:00
peter
31da8353e2
Clean up the skeleton code a little. There was a #ifdef to avoid
...
stdlib.h unless on C++. However, we already included it above, so there
was no point using the redundant declarations instead.
1999-04-18 13:37:49 +00:00
steve
ae132dac72
#include <stdlib.h> in the C++ case and declare getenv and realloc
...
in the C case so that we don't have to depend on stdlib.h being
present.
Submitted by: Bruce Evans <bde@freefall.freebsd.org>
1997-04-29 03:07:45 +00:00
steve
bafc3a0eb8
Fix problems using -Wwrite-strings and -Wcast-qual with yacc generated
...
parsers. Closes PR #2792 .
Submitted by: Tim Vanderhoek
1997-04-28 03:36:13 +00:00
bde
d8c04b9e65
Don't generate invalid C++ code (for implicit conversion from `void *' in
...
assignment).
1997-03-22 01:48:17 +00:00
peter
f390c26dd9
Revert $FreeBSD$ to $Id$
1997-02-22 19:58:13 +00:00
jkh
808a36ef65
Make the long-awaited change from $Id$ to $FreeBSD$
...
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.
Boy, I'm glad we're not using sup anymore. This update would have been
insane otherwise.
1997-01-14 07:20:47 +00:00
steve
62621e3ce1
Add RCS id's since these files have left the default branch.
1997-01-12 21:29:55 +00:00
steve
9ea5e02672
This doesn't change any functionality, it simple makes yacc(1)
...
compile -Wall clean.
1997-01-12 21:16:25 +00:00
steve
e4dc8d0d85
Merge Lite2 mods.
1997-01-06 03:07:20 +00:00
hsu
aa2308001f
Add YYLEX and YYEMPTY macros to make byacc look more like bison.
...
Obtained from: Cygnus source tree, with permission.
Original commit by Jim Wilson, wilson@cygnus.com .
1996-11-04 21:54:52 +00:00
steve
29accf9e0f
Fix for PR# 1427, yacc-generated parser generates warnings
...
with -Wall. Tim's work with some minor additions by me.
Submitted by: Tim Vanderhoek <hoek@freenet.hamilton.on.ca>
1996-09-22 02:05:53 +00:00
peter
90c8dabe75
Fix -Wall warning in skeleton parser
1996-09-03 10:56:32 +00:00
joerg
ae3ee69e4d
Make the yacc skeleton aware of C++. It was previously broken in the
...
YYDEBUG case (getenv() declared wrong).
1996-09-03 08:00:26 +00:00
phk
bdd1ce3cab
Make all the tables "const" so that they don't clutter our data-segment.
1996-01-07 22:30:13 +00:00
rgrimes
f9ab90d9d6
BSD 4.4 Lite Usr.bin Sources
1994-05-27 12:33:43 +00:00