Add md expression support; Cleanup alpha warnings
This commit is contained in:
parent
b85737aadf
commit
da516da191
|
@ -1,3 +1,8 @@
|
||||||
|
1999-10-18 Michael Meissner <meissner@cygnus.com>
|
||||||
|
|
||||||
|
* alpha.h (alpha_num_opcodes): Convert to unsigned.
|
||||||
|
(alpha_num_operands): Ditto.
|
||||||
|
|
||||||
Sun Oct 10 01:46:56 1999 Jerry Quinn <jerry.quinn.adv91@alum.dartmouth.org>
|
Sun Oct 10 01:46:56 1999 Jerry Quinn <jerry.quinn.adv91@alum.dartmouth.org>
|
||||||
|
|
||||||
* hppa.h (pa_opcodes): Add load and store cache control to
|
* hppa.h (pa_opcodes): Add load and store cache control to
|
||||||
|
|
|
@ -54,7 +54,7 @@ struct alpha_opcode
|
||||||
in the order in which the disassembler should consider
|
in the order in which the disassembler should consider
|
||||||
instructions. */
|
instructions. */
|
||||||
extern const struct alpha_opcode alpha_opcodes[];
|
extern const struct alpha_opcode alpha_opcodes[];
|
||||||
extern const int alpha_num_opcodes;
|
extern const unsigned alpha_num_opcodes;
|
||||||
|
|
||||||
/* Values defined for the flags field of a struct alpha_opcode. */
|
/* Values defined for the flags field of a struct alpha_opcode. */
|
||||||
|
|
||||||
|
@ -135,7 +135,7 @@ struct alpha_operand
|
||||||
the operands field of the alpha_opcodes table. */
|
the operands field of the alpha_opcodes table. */
|
||||||
|
|
||||||
extern const struct alpha_operand alpha_operands[];
|
extern const struct alpha_operand alpha_operands[];
|
||||||
extern const int alpha_num_operands;
|
extern const unsigned alpha_num_operands;
|
||||||
|
|
||||||
/* Values defined for the flags field of a struct alpha_operand. */
|
/* Values defined for the flags field of a struct alpha_operand. */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue