* elfread.c (elf_symfile_read): Move debugging printf to more
logical location.
This commit is contained in:
parent
634334ab5e
commit
7b6c814ed7
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-03-06 Doug Evans <dje@google.com>
|
||||
|
||||
* elfread.c (elf_symfile_read): Move debugging printf to more
|
||||
logical location.
|
||||
|
||||
2013-03-06 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* python/py-utils.c (target_string_to_unicode): Delete function.
|
||||
|
|
|
@ -1388,6 +1388,9 @@ elf_symfile_read (struct objfile *objfile, int symfile_flags)
|
|||
bfd_section_size (abfd, str_sect));
|
||||
}
|
||||
|
||||
if (symtab_create_debug)
|
||||
fprintf_unfiltered (gdb_stdlog, "Done reading minimal symbols.\n");
|
||||
|
||||
if (dwarf2_has_info (objfile, NULL))
|
||||
{
|
||||
/* elf_sym_fns_gdb_index cannot handle simultaneous non-DWARF debug
|
||||
|
@ -1439,9 +1442,6 @@ elf_symfile_read (struct objfile *objfile, int symfile_flags)
|
|||
do_cleanups (cleanup);
|
||||
}
|
||||
}
|
||||
|
||||
if (symtab_create_debug)
|
||||
fprintf_unfiltered (gdb_stdlog, "Done reading minimal symbols.\n");
|
||||
}
|
||||
|
||||
/* Callback to lazily read psymtabs. */
|
||||
|
|
Loading…
Reference in a new issue