Commit e3600af4 by Greg McGary Committed by Greg McGary

c-parse.y, [...]: Regenerate.

	* c-parse.y, c-parse.c, c-parse.h: Regenerate.
	* objc/objc-parse.y, objc/objc-parse.c: Regenerate.

From-SVN: r32541
parent 4b4f19ec
......@@ -6,6 +6,8 @@
__ptrextent, __ptrextent__, __ptrvalue, __ptrvalue__,
__unbounded, __unbounded__): New keywords.
* c-parse.in (PTR_VALUE PTR_BASE PTR_EXTENT): New tokens.
* c-parse.y, c-parse.c, c-parse.h: Regenerate.
* objc/objc-parse.y, objc/objc-parse.c: Regenerate.
2000-03-14 Bernd Schmidt <bernds@cygnus.co.uk>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -33,34 +33,37 @@ typedef union {long itype; tree ttype; enum tree_code code;
#define REALPART 287
#define IMAGPART 288
#define VA_ARG 289
#define END_OF_LINE 290
#define ASSIGN 291
#define OROR 292
#define ANDAND 293
#define EQCOMPARE 294
#define ARITHCOMPARE 295
#define LSHIFT 296
#define RSHIFT 297
#define UNARY 298
#define PLUSPLUS 299
#define MINUSMINUS 300
#define HYPERUNARY 301
#define POINTSAT 302
#define INTERFACE 303
#define IMPLEMENTATION 304
#define END 305
#define SELECTOR 306
#define DEFS 307
#define ENCODE 308
#define CLASSNAME 309
#define PUBLIC 310
#define PRIVATE 311
#define PROTECTED 312
#define PROTOCOL 313
#define OBJECTNAME 314
#define CLASS 315
#define ALIAS 316
#define OBJC_STRING 317
#define PTR_VALUE 290
#define PTR_BASE 291
#define PTR_EXTENT 292
#define END_OF_LINE 293
#define ASSIGN 294
#define OROR 295
#define ANDAND 296
#define EQCOMPARE 297
#define ARITHCOMPARE 298
#define LSHIFT 299
#define RSHIFT 300
#define UNARY 301
#define PLUSPLUS 302
#define MINUSMINUS 303
#define HYPERUNARY 304
#define POINTSAT 305
#define INTERFACE 306
#define IMPLEMENTATION 307
#define END 308
#define SELECTOR 309
#define DEFS 310
#define ENCODE 311
#define CLASSNAME 312
#define PUBLIC 313
#define PRIVATE 314
#define PROTECTED 315
#define PROTOCOL 316
#define OBJECTNAME 317
#define CLASS 318
#define ALIAS 319
#define OBJC_STRING 320
extern YYSTYPE yylval;
/*WARNING: This file is automatically generated!*/
/* YACC parser for C syntax and for Objective C. -*-c-*-
Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000 Free Software Foundation, Inc.
Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996,
1997, 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of GNU CC.
......@@ -103,6 +103,7 @@ const char * const language_string = "GNU C";
%token BREAK CONTINUE RETURN GOTO ASM_KEYWORD TYPEOF ALIGNOF
%token ATTRIBUTE EXTENSION LABEL
%token REALPART IMAGPART VA_ARG
%token PTR_VALUE PTR_BASE PTR_EXTENT
/* Used in c-lex.c for parsing pragmas. */
%token END_OF_LINE
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -104,6 +104,7 @@ const char * const language_string = "GNU Obj-C";
%token BREAK CONTINUE RETURN GOTO ASM_KEYWORD TYPEOF ALIGNOF
%token ATTRIBUTE EXTENSION LABEL
%token REALPART IMAGPART VA_ARG
%token PTR_VALUE PTR_BASE PTR_EXTENT
/* Used in c-lex.c for parsing pragmas. */
%token END_OF_LINE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment