mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-13 19:06:54 +08:00
Correct {STANDARD,MRI}_MUL_PRECEDENCE value.
This commit is contained in:
@ -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>
|
2000-11-26 Stephane Carrez <Stephane.Carrez@worldnet.fr>
|
||||||
|
|
||||||
* config/tc-m68hc11.c (build_indexed_byte): Print the offset in
|
* config/tc-m68hc11.c (build_indexed_byte): Print the offset in
|
||||||
|
@ -1469,7 +1469,7 @@ static operator_rankT op_rank[] = {
|
|||||||
0, /* O_symbol */
|
0, /* O_symbol */
|
||||||
0, /* O_symbol_rva */
|
0, /* O_symbol_rva */
|
||||||
0, /* O_register */
|
0, /* O_register */
|
||||||
0, /* O_bit */
|
0, /* O_big */
|
||||||
9, /* O_uminus */
|
9, /* O_uminus */
|
||||||
9, /* O_bit_not */
|
9, /* O_bit_not */
|
||||||
9, /* O_logical_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
|
mode. Also, MRI uses a different bit_not operator, and this fixes
|
||||||
that as well. */
|
that as well. */
|
||||||
|
|
||||||
#define STANDARD_MUL_PRECEDENCE (7)
|
#define STANDARD_MUL_PRECEDENCE 8
|
||||||
#define MRI_MUL_PRECEDENCE (5)
|
#define MRI_MUL_PRECEDENCE 6
|
||||||
|
|
||||||
void
|
void
|
||||||
expr_set_precedence ()
|
expr_set_precedence ()
|
||||||
|
Reference in New Issue
Block a user