From 673e6e66b7e157ab27fba2f46503c89c8fd51116 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 27 Jun 2001 00:10:34 +0000 Subject: [PATCH] turns out qcc wasn't so stupid about = vs ||/&& precedence after all (just my interpretation of the code was:/) why oh why didn't John use bison or yacc in the first place? :/ --- tools/qfcc/source/qc-parse.y | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/qfcc/source/qc-parse.y b/tools/qfcc/source/qc-parse.y index 1d79dc4dc..82861900a 100644 --- a/tools/qfcc/source/qc-parse.y +++ b/tools/qfcc/source/qc-parse.y @@ -44,8 +44,8 @@ typedef struct { function_t *function; } -%left OR AND %right '=' +%left OR AND %left EQ NE LE GE LT GT %left '+' '-' %left '*' '/' '&' '|' @@ -379,9 +379,9 @@ statement ; expr - : expr AND expr { $$ = binary_expr (AND, $1, $3); } + : expr '=' expr { $$ = binary_expr ('=', $1, $3); } + | expr AND expr { $$ = binary_expr (AND, $1, $3); } | expr OR expr { $$ = binary_expr (OR, $1, $3); } - | expr '=' expr { $$ = binary_expr ('=', $1, $3); } | expr EQ expr { $$ = binary_expr (EQ, $1, $3); } | expr NE expr { $$ = binary_expr (NE, $1, $3); } | expr LE expr { $$ = binary_expr (LE, $1, $3); }