diff options
author | Alan Modra <amodra@gmail.com> | 2009-02-12 12:47:39 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-02-12 12:47:39 +0000 |
commit | d401d98a57f2e2d30befd5dbe479aaa2d5e83deb (patch) | |
tree | 87209154fa19df0abee30996e3768cfa4907dde9 /gprof/mips.c | |
parent | 5d7cb8dff5604ea7f2a1cc598a95b2067c16dde6 (diff) | |
download | gdb-d401d98a57f2e2d30befd5dbe479aaa2d5e83deb.zip gdb-d401d98a57f2e2d30befd5dbe479aaa2d5e83deb.tar.gz gdb-d401d98a57f2e2d30befd5dbe479aaa2d5e83deb.tar.bz2 |
* corefile.c (core_create_function_syms): Remove "<locore>" and
"<hicore>" sentinels.
* gprof.c: Likewise.
* cg_print.c (cg_print_function_ordering): Likewise.
* alpha.c (alpha_find_call): Add check for return value of sym_lookup.
* mips.c (mips_find_call): Likewise.
* sparc.c (sparc_find_call): Likewise.
* tahoe.c (tahoe_find_call): Likewise.
* vax.c (vax_find_call): Likewise.
Diffstat (limited to 'gprof/mips.c')
-rw-r--r-- | gprof/mips.c | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/gprof/mips.c b/gprof/mips.c index 7a7344d..2de87cf 100644 --- a/gprof/mips.c +++ b/gprof/mips.c @@ -74,16 +74,19 @@ mips_find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc) if (hist_check_address (dest_pc)) { child = sym_lookup (&symtab, dest_pc); - DBG (CALLDEBUG, - printf (" 0x%lx\t; name=%s, addr=0x%lx", - (unsigned long) dest_pc, child->name, - (unsigned long) child->addr)); - if (child->addr == dest_pc) + if (child) { - DBG (CALLDEBUG, printf ("\n")); - /* a hit: */ - arc_add (parent, child, (unsigned long) 0); - continue; + DBG (CALLDEBUG, + printf (" 0x%lx\t; name=%s, addr=0x%lx", + (unsigned long) dest_pc, child->name, + (unsigned long) child->addr)); + if (child->addr == dest_pc) + { + DBG (CALLDEBUG, printf ("\n")); + /* a hit: */ + arc_add (parent, child, (unsigned long) 0); + continue; + } } } /* Something funny going on. */ |