From: David Given Date: Thu, 6 Oct 2016 19:33:43 +0000 (+0200) Subject: We're not using 'allocates' any more; clean up. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=7f901aa4d0166409215930c97f50af4ced400e42;p=ack.git We're not using 'allocates' any more; clean up. --- diff --git a/util/mcgg/gram.y b/util/mcgg/gram.y index fbd191052..30c61cb4c 100644 --- a/util/mcgg/gram.y +++ b/util/mcgg/gram.y @@ -25,7 +25,6 @@ extern int yylex(void); struct constraint* constraint; } -%term ALLOCATES %term COPY %term COST %term DECLARATIONS @@ -43,7 +42,6 @@ extern int yylex(void); %token ID %token QFRAGMENT -%type allocates %type constraint %type constraints %type declaration diff --git a/util/mcgg/scan.l b/util/mcgg/scan.l index 2d04f52c0..6bd50d294 100644 --- a/util/mcgg/scan.l +++ b/util/mcgg/scan.l @@ -38,7 +38,6 @@ static int braces = 0; "DECLARATIONS" return DECLARATIONS; "PATTERNS" return PATTERNS; "REGISTERS" return REGISTERS; -"allocates" return ALLOCATES; "cost" return COST; "emit" return EMIT; "fragment" return FRAGMENT;