* coffgen.c (coff_find_nearest_line): Correct cached line index.
authorAlan Modra <amodra@gmail.com>
Thu, 14 Aug 2008 02:38:22 +0000 (02:38 +0000)
committerAlan Modra <amodra@gmail.com>
Thu, 14 Aug 2008 02:38:22 +0000 (02:38 +0000)
bfd/ChangeLog
bfd/coffgen.c

index 4e2baac79b04707049bedfe97288bba8fb7dda8c..b9cec1102d012867da70e4387c79530efe5de943 100644 (file)
@@ -1,3 +1,7 @@
+2008-08-14  Jaka Močnik  <jaka@xlab.si>
+
+       * coffgen.c (coff_find_nearest_line): Correct cached line index.
+
 2008-08-12  Alan Modra  <amodra@bigpond.net.au>
 
        * elf32-ppc.c (allocate_dynrelocs): Ignore dyn_relocs when
index 98b5bbea8a235204c1238176c050ff3198a73409..17d46a2d5b8fa1e4ba4d67798edac3bec6a12443 100644 (file)
@@ -2145,7 +2145,7 @@ coff_find_nearest_line (bfd *abfd,
     }
 
   /* Now wander though the raw linenumbers of the section.  */
-  /* If we have been called on this section before, and the offset we
+  /* If we have been called on this section before, and the offset we
      want is further down then we can prime the lookup loop.  */
   sec_data = coff_section_data (abfd, section);
   if (sec_data != NULL
@@ -2232,7 +2232,7 @@ coff_find_nearest_line (bfd *abfd,
   if (sec_data != NULL)
     {
       sec_data->offset = offset;
-      sec_data->i = i;
+      sec_data->i = i - 1;
       sec_data->function = *functionname_ptr;
       sec_data->line_base = line_base;
     }