mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
2008-12-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* compile.c: Add const to remove warning.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2008-12-01 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* compile.c: Add const to remove warning.
|
||||||
|
|
||||||
2008-07-11 Hans-Peter Nilsson <hp@axis.com>
|
2008-07-11 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
* configure: Regenerate to track ../common/common.m4 changes.
|
* configure: Regenerate to track ../common/common.m4 changes.
|
||||||
|
@ -599,7 +599,7 @@ decode (SIM_DESC sd, int addr, unsigned char *data, decoded_inst *dst)
|
|||||||
/* Find the exact opcode/arg combo. */
|
/* Find the exact opcode/arg combo. */
|
||||||
for (q = h8_opcodes; q->name; q++)
|
for (q = h8_opcodes; q->name; q++)
|
||||||
{
|
{
|
||||||
op_type *nib = q->data.nib;
|
const op_type *nib = q->data.nib;
|
||||||
unsigned int len = 0;
|
unsigned int len = 0;
|
||||||
|
|
||||||
if ((q->available == AV_H8SX && !h8300sxmode) ||
|
if ((q->available == AV_H8SX && !h8300sxmode) ||
|
||||||
@ -924,7 +924,7 @@ decode (SIM_DESC sd, int addr, unsigned char *data, decoded_inst *dst)
|
|||||||
#endif
|
#endif
|
||||||
/* Fill in the args. */
|
/* Fill in the args. */
|
||||||
{
|
{
|
||||||
op_type *args = q->args.nib;
|
const op_type *args = q->args.nib;
|
||||||
int hadone = 0;
|
int hadone = 0;
|
||||||
int nargs;
|
int nargs;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user