aboutsummaryrefslogtreecommitdiff
path: root/gdb/ppc-linux-tdep.c
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2003-10-21 22:56:39 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2003-10-21 22:56:39 +0000
commit5520a790ef1a5b3804fec946801f91ddb6f3c2cb (patch)
tree12a261c5b63e17452280d219ea73831b5892d778 /gdb/ppc-linux-tdep.c
parentcaa92b733943c9c079c0e98967f58fe0b0a68e6d (diff)
downloadgdb-5520a790ef1a5b3804fec946801f91ddb6f3c2cb.zip
gdb-5520a790ef1a5b3804fec946801f91ddb6f3c2cb.tar.gz
gdb-5520a790ef1a5b3804fec946801f91ddb6f3c2cb.tar.bz2
2003-10-21 Elena Zannoni <ezannoni@redhat.com>
* minsyms.c (lookup_minimal_symbol_text): Remove unused parameter. Remove SOFUN_ADDRESS_MAYBE_MISSING ifdeffed code. * symtab.h (lookup_minimal_symbol_text): Update. * breakpoint.c (create_overlay_event_breakpoint, create_longjmp_breakpoint): Update callers. * ppc-linux-tdep.c (ppc_linux_skip_trampoline_code): Update caller. * symtab.c (find_pc_sect_line): Ditto.
Diffstat (limited to 'gdb/ppc-linux-tdep.c')
-rw-r--r--gdb/ppc-linux-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ppc-linux-tdep.c b/gdb/ppc-linux-tdep.c
index 4a6bf6d..60b976f 100644
--- a/gdb/ppc-linux-tdep.c
+++ b/gdb/ppc-linux-tdep.c
@@ -331,7 +331,7 @@ ppc_linux_skip_trampoline_code (CORE_ADDR pc)
/* This might not work right if we have multiple symbols with the
same name; the only way to really get it right is to perform
the same sort of lookup as the dynamic linker. */
- msymbol = lookup_minimal_symbol_text (symname, NULL, NULL);
+ msymbol = lookup_minimal_symbol_text (symname, NULL);
if (!msymbol)
return 0;