diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-05-31 12:45:19 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-05-31 12:45:19 +0200 |
commit | ac2a3313a041467714c12e640e4ef531af0692e3 (patch) | |
tree | 013d45d75284915bf615fea76eb37c41eed7f3c5 | |
parent | 14eb9b46326f70d6c14ee82614b8107941b04dbe (diff) |
-rw-r--r-- | src/parser.y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser.y b/src/parser.y index 2474213..2459f6c 100644 --- a/src/parser.y +++ b/src/parser.y @@ -38,10 +38,11 @@ extern const char *current_file; %type<ast> expr %type<asts> line exprs +%left EQUIV +%left IMPL %left OR %left AND %left XOR -%left IMPL EQUIV %precedence NOT %% |