aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-06-03 15:37:16 +0000
committerMike Buland <eichlan@xagasoft.com>2011-06-03 15:37:16 +0000
commit62f0f3841e159b82222877727285b090ec8190f6 (patch)
tree753098e3877f1b2daa1766b0b48b7285826b4694
parent782623371e37dc992d36a751c87253a45dfd0c1e (diff)
downloadbuild-62f0f3841e159b82222877727285b090ec8190f6.tar.gz
build-62f0f3841e159b82222877727285b090ec8190f6.tar.bz2
build-62f0f3841e159b82222877727285b090ec8190f6.tar.xz
build-62f0f3841e159b82222877727285b090ec8190f6.zip
Corrected a precedence issue with the << operator which was causing shift/reduce
conflicts.
-rw-r--r--src/build.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.y b/src/build.y
index 0a9111c..5a5e938 100644
--- a/src/build.y
+++ b/src/build.y
@@ -91,7 +91,7 @@ void yyerror( YYLTYPE *locp, yyscan_t yyscanner, BuildParser &bld, const char *m
91 91
92%token '(' ')' '{' '}' '[' ']' ',' ';' '=' '.' '<' '>' '+' '-' '*' '/' 92%token '(' ')' '{' '}' '[' ']' ',' ';' '=' '.' '<' '>' '+' '-' '*' '/'
93 93
94%right '=' OP_ADDSETP OPADDSETR 94%right '=' OP_ADDSETP OP_ADDSETR OPADDSETR
95%left OP_CMPEQUAL '<' '>' OP_INEQUAL OP_LTEQUAL OP_GTEQUAL '+' '-' '*' '/' 95%left OP_CMPEQUAL '<' '>' OP_INEQUAL OP_LTEQUAL OP_GTEQUAL '+' '-' '*' '/'
96%left '(' ')' '{' '}' '[' ']' 96%left '(' ')' '{' '}' '[' ']'
97%left IINEG IINOT 97%left IINEG IINOT