tcg-hppa: Fix const errors in hppa-dis.c
Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
0c62de2f4d
commit
3436332ed6
@ -576,7 +576,7 @@ struct pa_opcode
|
|||||||
const char *name;
|
const char *name;
|
||||||
unsigned long int match; /* Bits that must be set... */
|
unsigned long int match; /* Bits that must be set... */
|
||||||
unsigned long int mask; /* ... in these bits. */
|
unsigned long int mask; /* ... in these bits. */
|
||||||
char *args;
|
const char *args;
|
||||||
enum pa_arch arch;
|
enum pa_arch arch;
|
||||||
char flags;
|
char flags;
|
||||||
};
|
};
|
||||||
@ -2753,7 +2753,7 @@ print_insn_hppa (bfd_vma memaddr, disassemble_info *info)
|
|||||||
int sf = GET_FIELD (insn, 19, 20);
|
int sf = GET_FIELD (insn, 19, 20);
|
||||||
const char * const * source = float_format_names;
|
const char * const * source = float_format_names;
|
||||||
const char * const * dest = float_format_names;
|
const char * const * dest = float_format_names;
|
||||||
char *t = "";
|
const char *t = "";
|
||||||
|
|
||||||
if (sub == 4)
|
if (sub == 4)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user