diff options
Diffstat (limited to 'bfd/som.c')
-rw-r--r-- | bfd/som.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bfd/som.c b/bfd/som.c index 6bc4ac922cc..513e4fa6049 100644 --- a/bfd/som.c +++ b/bfd/som.c @@ -5715,18 +5715,22 @@ som_set_arch_mach (bfd *abfd, static bfd_boolean som_find_nearest_line (bfd *abfd, - asection *section, asymbol **symbols, + asection *section, bfd_vma offset, const char **filename_ptr, const char **functionname_ptr, - unsigned int *line_ptr) + unsigned int *line_ptr, + unsigned int *discriminator_ptr) { bfd_boolean found; asymbol *func; bfd_vma low_func; asymbol **p; + if (discriminator_ptr) + *discriminator_ptr = 0; + if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset, & found, filename_ptr, functionname_ptr, line_ptr, |