diff options
author | Richard Earnshaw <richard.earnshaw@arm.com> | 2007-04-20 00:00:21 +0000 |
---|---|---|
committer | Richard Earnshaw <richard.earnshaw@arm.com> | 2007-04-20 00:00:21 +0000 |
commit | 86ad2a1353faca2a7f36cef31059e52d6321286b (patch) | |
tree | bd7e298bea569a80b868c1a5d2241a0773b6d928 /opcodes/arm-dis.c | |
parent | 12741b1efd88f3c9a72dd27507935b5149e2f5d2 (diff) | |
download | binutils-86ad2a1353faca2a7f36cef31059e52d6321286b.zip binutils-86ad2a1353faca2a7f36cef31059e52d6321286b.tar.gz binutils-86ad2a1353faca2a7f36cef31059e52d6321286b.tar.bz2 |
* arm-dis.c (print_insn): Only look for a mapping symbol in the section
being disassembled.
Diffstat (limited to 'opcodes/arm-dis.c')
-rw-r--r-- | opcodes/arm-dis.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c index b570ac0..a782d22 100644 --- a/opcodes/arm-dis.c +++ b/opcodes/arm-dis.c @@ -1,6 +1,6 @@ /* Instruction printing code for the ARM Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 - Free Software Foundation, Inc. + 2007, Free Software Foundation, Inc. Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org) Modification by James G. Smith (jsmith@cygnus.co.uk) @@ -3982,7 +3982,9 @@ print_insn (bfd_vma pc, struct disassemble_info *info, bfd_boolean little) addr = bfd_asymbol_value (info->symtab[n]); if (addr > pc) break; - if (get_sym_code_type (info, n, &type)) + if ((info->section == NULL + || info->section == info->symtab[n]->section) + && get_sym_code_type (info, n, &type)) { last_sym = n; found = TRUE; |