Correct {STANDARD,MRI}_MUL_PRECEDENCE value.
authorAlan Modra <amodra@gmail.com>
Tue, 28 Nov 2000 13:33:22 +0000 (13:33 +0000)
committerAlan Modra <amodra@gmail.com>
Tue, 28 Nov 2000 13:33:22 +0000 (13:33 +0000)
gas/ChangeLog
gas/expr.c

index 19a944952f9b58936a114658aabc8836b88cc1ed..1dbdeeb68b2b38ae7b291f7c7d0780dac067768a 100644 (file)
@@ -1,3 +1,9 @@
+2000-11-28  Alan Modra  <alan@linuxcare.com.au>
+
+       * expr.c (STANDARD_MUL_PRECEDENCE): Correct value.
+       (MRI_MUL_PRECEDENCE): Likewise.
+       (op_rank): Fix a comment typo.
+
 2000-11-26  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
 
        * config/tc-m68hc11.c (build_indexed_byte): Print the offset in
index 8313d95a17b740e4ac46f494bb4a252bb2b73b07..21c3d6762604e94451528e8d82b4a37d5cc3b360 100644 (file)
@@ -1469,7 +1469,7 @@ static operator_rankT op_rank[] = {
   0,   /* O_symbol */
   0,   /* O_symbol_rva */
   0,   /* O_register */
-  0,   /* O_bit */
+  0,   /* O_big */
   9,   /* O_uminus */
   9,   /* O_bit_not */
   9,   /* O_logical_not */
@@ -1517,8 +1517,8 @@ static operator_rankT op_rank[] = {
    mode.  Also, MRI uses a different bit_not operator, and this fixes
    that as well.  */
 
-#define STANDARD_MUL_PRECEDENCE (7)
-#define MRI_MUL_PRECEDENCE (5)
+#define STANDARD_MUL_PRECEDENCE 8
+#define MRI_MUL_PRECEDENCE 6
 
 void
 expr_set_precedence ()
This page took 0.032571 seconds and 4 git commands to generate.