mpc: remove unused yylval type
This commit is contained in:
parent
26e00d014c
commit
3145ca7d78
1 changed files with 1 additions and 2 deletions
|
@ -64,7 +64,6 @@ void fcom(Node*,Node*,Node*);
|
|||
{
|
||||
Sym* sval;
|
||||
Node* node;
|
||||
long lval;
|
||||
}
|
||||
|
||||
%type <node> name num args expr bool block elif stmnt stmnts
|
||||
|
@ -80,7 +79,7 @@ void fcom(Node*,Node*,Node*);
|
|||
%left '^'
|
||||
%right '('
|
||||
|
||||
%token <lval> MOD IF ELSE WHILE BREAK
|
||||
%token MOD IF ELSE WHILE BREAK
|
||||
%token <sval> NAME NUM
|
||||
|
||||
%%
|
||||
|
|
Loading…
Reference in a new issue