mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
Fix compile time warning (at -O3 with gcc 4.1.2)
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2007-04-24 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* arm-dis.c (print_insn): Initialise type.
|
||||||
|
|
||||||
2007-04-24 Alan Modra <amodra@bigpond.net.au>
|
2007-04-24 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* cgen-types.h: Include bfd_stdint.h, not stdint.h.
|
* cgen-types.h: Include bfd_stdint.h, not stdint.h.
|
||||||
|
@ -3987,7 +3987,7 @@ print_insn (bfd_vma pc, struct disassemble_info *info, bfd_boolean little)
|
|||||||
bfd_vma addr;
|
bfd_vma addr;
|
||||||
int n;
|
int n;
|
||||||
int last_sym = -1;
|
int last_sym = -1;
|
||||||
enum map_type type;
|
enum map_type type = MAP_ARM;
|
||||||
|
|
||||||
if (pc <= last_mapping_addr)
|
if (pc <= last_mapping_addr)
|
||||||
last_mapping_sym = -1;
|
last_mapping_sym = -1;
|
||||||
|
Reference in New Issue
Block a user