diff options
author | Nick Clifton <nickc@redhat.com> | 2007-04-24 13:21:32 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-04-24 13:21:32 +0000 |
commit | fbb923013041867c7abbb54ed52ecded4c214251 (patch) | |
tree | 00516f23ef13b96e98b469b1dd05af5951a7d769 /opcodes/arm-dis.c | |
parent | 40b1c6c5d4ec74ccf53e7d192b555575093155cd (diff) | |
download | gdb-fbb923013041867c7abbb54ed52ecded4c214251.zip gdb-fbb923013041867c7abbb54ed52ecded4c214251.tar.gz gdb-fbb923013041867c7abbb54ed52ecded4c214251.tar.bz2 |
Fix compile time warning (at -O3 with gcc 4.1.2)
Diffstat (limited to 'opcodes/arm-dis.c')
-rw-r--r-- | opcodes/arm-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index 0c0e964..cf67b5f 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -3987,7 +3987,7 @@ print_insn (bfd_vma pc, struct disassemble_info *info, bfd_boolean little) bfd_vma addr; int n; int last_sym = -1; - enum map_type type; + enum map_type type = MAP_ARM; if (pc <= last_mapping_addr) last_mapping_sym = -1; |