mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-20 06:15:09 +08:00
* config/tc-h8300.c (build_bytes): Fix const warning.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2006-11-02 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
|
* config/tc-h8300.c (build_bytes): Fix const warning.
|
||||||
|
|
||||||
2006-11-01 Mei Ligang <ligang@sunnorth.com.cn>
|
2006-11-01 Mei Ligang <ligang@sunnorth.com.cn>
|
||||||
|
|
||||||
* tc-score.c (do16_rdrs): Handle not! instruction especially.
|
* tc-score.c (do16_rdrs): Handle not! instruction especially.
|
||||||
|
@ -1389,7 +1389,7 @@ build_bytes (const struct h8_instruction *this_try, struct h8_op *operand)
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
char *output = frag_more (this_try->length);
|
char *output = frag_more (this_try->length);
|
||||||
op_type *nibble_ptr = this_try->opcode->data.nib;
|
const op_type *nibble_ptr = this_try->opcode->data.nib;
|
||||||
op_type c;
|
op_type c;
|
||||||
unsigned int nibble_count = 0;
|
unsigned int nibble_count = 0;
|
||||||
int op_at[3];
|
int op_at[3];
|
||||||
|
Reference in New Issue
Block a user