]> git.saurik.com Git - bison.git/blobdiff - tests/calc.at
Replace m4/warning.m4 with warnings module.
[bison.git] / tests / calc.at
index 2624908845c857b6d8574271a762f610814d3dcc..03c8238f335efdeec0abd691225646fb41429eec 100644 (file)
@@ -106,11 +106,11 @@ static void unget_char (]AT_LEX_PRE_FORMALS[ int c);
 %token <ival> NUM "number"
 %type  <ival> exp
 
-%nonassoc '=' /* comparison           */
+%nonassoc '='   /* comparison         */
 %left '-' '+'
 %left '*' '/'
-%left NEG     /* negation--unary minus */
-%right '^'    /* exponentiation        */
+%precedence NEG /* negation--unary minus */
+%right '^'      /* exponentiation        */
 
 /* Grammar follows */
 %%