summaryrefslogtreecommitdiffstats
path: root/c/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'c/parser.y')
-rw-r--r--c/parser.y5
1 files changed, 0 insertions, 5 deletions
diff --git a/c/parser.y b/c/parser.y
index 2684a26e..822a3385 100644
--- a/c/parser.y
+++ b/c/parser.y
@@ -53,7 +53,6 @@
%token END "end"
%token AND "and"
%token OR "or"
-%token NOT "not"
%token SETPIPE "|="
%token SETPLUS "+="
%token SETMINUS "-="
@@ -210,10 +209,6 @@ Exp "and" Exp {
$$ = gen_and($1, $3);
} |
-"not" Exp {
- $$ = gen_not($2);
-} |
-
Exp "//" Exp {
$$ = gen_definedor($1, $3);
} |