diff options
author | Alan Modra <amodra@bigpond.net.au> | 2002-12-02 13:13:37 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2002-12-02 13:13:37 +0000 |
commit | f7839c3dcf4790fa29335ef1fd2f0afa69a932ea (patch) | |
tree | 4ce76cc1395e9d53db5645a1b4fc9cf83733142c /opcodes/h8500-dis.c | |
parent | 3ac4d4a2c44e7785d435a79c445e6e448e49b536 (diff) | |
download | gdb-f7839c3dcf4790fa29335ef1fd2f0afa69a932ea.tar.gz |
* arm-dis.c (print_insn_arm): Constify "insn". Formatting.
(print_insn_thumb): Likewise.
* h8500-dis.c (print_insn_h8500): Constify "opcode".
* mcore-dis.c (print_insn_mcore): Constify "op". Formatting.
* ns32k-dis.c (print_insn_arg <case 'F'>): Use a union to avoid
type-punned pointer warnings.
<case 'L'>: Likewise. Fix error message too.
* pdp11-dis.c (print_reg): Warning fix.
* sh-dis.c (print_movxy): Constify "op" param.
(print_insn_ddt): Constify sh_opcode_info vars.
(print_insn_ppi): Likewise.
(print_insn_sh): Likewise.
* tic30-dis.c (cnvt_tmsfloat_ieee): Use a union to avoid
type-punned pointer warnings.
* w65-dis.c (print_insn_w65): Constify "op".
Diffstat (limited to 'opcodes/h8500-dis.c')
-rw-r--r-- | opcodes/h8500-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/h8500-dis.c b/opcodes/h8500-dis.c index 62371829e2b..5fa52fbf99e 100644 --- a/opcodes/h8500-dis.c +++ b/opcodes/h8500-dis.c @@ -1,5 +1,5 @@ /* Disassemble h8500 instructions. - Copyright 1993, 1998, 2000, 2001 Free Software Foundation, Inc. + Copyright 1993, 1998, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -78,7 +78,7 @@ print_insn_h8500 (addr, info) bfd_vma addr; disassemble_info *info; { - h8500_opcode_info *opcode; + const h8500_opcode_info *opcode; void *stream = info->stream; fprintf_ftype func = info->fprintf_func; |