We're not using 'allocates' any more; clean up.

This commit is contained in:
David Given 2016-10-06 21:33:43 +02:00
parent d20b63dc94
commit 7f901aa4d0
2 changed files with 0 additions and 3 deletions

View file

@ -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

View file

@ -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;