diff options
author | Michael Meissner <gnu@the-meissners.org> | 1999-10-18 22:29:15 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1999-10-18 22:29:15 +0000 |
commit | f3b1c6abdafbe3ef8e3ff342eb9a4b739071fba2 (patch) | |
tree | 7468b26a1654f5b60cc9f20bb74b2ebc0c8e7cd5 /include/opcode | |
parent | 04a1f5293eaacce16a937d4c82ec096d66f0556e (diff) | |
download | gdb-f3b1c6abdafbe3ef8e3ff342eb9a4b739071fba2.tar.gz |
Add md expression support; Cleanup alpha warnings
Diffstat (limited to 'include/opcode')
-rw-r--r-- | include/opcode/ChangeLog | 5 | ||||
-rw-r--r-- | include/opcode/alpha.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 15298dfd8f1..71aa204cd9a 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -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> * hppa.h (pa_opcodes): Add load and store cache control to diff --git a/include/opcode/alpha.h b/include/opcode/alpha.h index d18eb04451e..6f31e9ae09c 100644 --- a/include/opcode/alpha.h +++ b/include/opcode/alpha.h @@ -54,7 +54,7 @@ struct alpha_opcode in the order in which the disassembler should consider instructions. */ 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. */ @@ -135,7 +135,7 @@ struct alpha_operand the operands field of the alpha_opcodes table. */ 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. */ |