We're not using 'allocates' any more; clean up.
This commit is contained in:
parent
d20b63dc94
commit
7f901aa4d0
|
@ -25,7 +25,6 @@ extern int yylex(void);
|
||||||
struct constraint* constraint;
|
struct constraint* constraint;
|
||||||
}
|
}
|
||||||
|
|
||||||
%term ALLOCATES
|
|
||||||
%term COPY
|
%term COPY
|
||||||
%term COST
|
%term COST
|
||||||
%term DECLARATIONS
|
%term DECLARATIONS
|
||||||
|
@ -43,7 +42,6 @@ extern int yylex(void);
|
||||||
%token <string> ID
|
%token <string> ID
|
||||||
%token <string> QFRAGMENT
|
%token <string> QFRAGMENT
|
||||||
|
|
||||||
%type <nonterm> allocates
|
|
||||||
%type <constraint> constraint
|
%type <constraint> constraint
|
||||||
%type <constraint> constraints
|
%type <constraint> constraints
|
||||||
%type <nonterm> declaration
|
%type <nonterm> declaration
|
||||||
|
|
|
@ -38,7 +38,6 @@ static int braces = 0;
|
||||||
"DECLARATIONS" return DECLARATIONS;
|
"DECLARATIONS" return DECLARATIONS;
|
||||||
"PATTERNS" return PATTERNS;
|
"PATTERNS" return PATTERNS;
|
||||||
"REGISTERS" return REGISTERS;
|
"REGISTERS" return REGISTERS;
|
||||||
"allocates" return ALLOCATES;
|
|
||||||
"cost" return COST;
|
"cost" return COST;
|
||||||
"emit" return EMIT;
|
"emit" return EMIT;
|
||||||
"fragment" return FRAGMENT;
|
"fragment" return FRAGMENT;
|
||||||
|
|
Loading…
Reference in a new issue