mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-21 10:13:03 +00:00
(start_symbol): Remove unused decl.
Use more-consistent naming conventions for local vars.
This commit is contained in:
12
src/gram.h
12
src/gram.h
@@ -1,6 +1,6 @@
|
|||||||
/* Data definitions for internal representation of Bison's input.
|
/* Data definitions for internal representation of Bison's input.
|
||||||
|
|
||||||
Copyright (C) 1984, 1986, 1989, 1992, 2001, 2002
|
Copyright (C) 1984, 1986, 1989, 1992, 2001, 2002, 2003
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of Bison, the GNU Compiler Compiler.
|
This file is part of Bison, the GNU Compiler Compiler.
|
||||||
@@ -107,8 +107,8 @@
|
|||||||
# include "location.h"
|
# include "location.h"
|
||||||
# include "symtab.h"
|
# include "symtab.h"
|
||||||
|
|
||||||
# define ISTOKEN(s) ((s) < ntokens)
|
# define ISTOKEN(i) ((i) < ntokens)
|
||||||
# define ISVAR(s) ((s) >= ntokens)
|
# define ISVAR(i) ((i) >= ntokens)
|
||||||
|
|
||||||
extern int nsyms;
|
extern int nsyms;
|
||||||
extern int ntokens;
|
extern int ntokens;
|
||||||
@@ -127,9 +127,9 @@ extern unsigned int nritems;
|
|||||||
sometimes have to perform the converse transformation. */
|
sometimes have to perform the converse transformation. */
|
||||||
|
|
||||||
static inline item_number
|
static inline item_number
|
||||||
symbol_number_as_item_number (symbol_number s)
|
symbol_number_as_item_number (symbol_number sym)
|
||||||
{
|
{
|
||||||
return s;
|
return sym;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline symbol_number
|
static inline symbol_number
|
||||||
@@ -138,8 +138,6 @@ item_number_as_symbol_number (item_number i)
|
|||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
extern symbol_number start_symbol;
|
|
||||||
|
|
||||||
/* Rule numbers. */
|
/* Rule numbers. */
|
||||||
typedef short rule_number;
|
typedef short rule_number;
|
||||||
extern rule_number nrules;
|
extern rule_number nrules;
|
||||||
|
|||||||
Reference in New Issue
Block a user