A new board file remote-gdbserver-on-localhost.exp
[deliverable/binutils-gdb.git] / bfd / ecofflink.c
index 2ec28863ca7186578769ad8460073c85382e0092..4f0b463db021c54106dd9bf43876542bbb4ca4a5 100644 (file)
@@ -1,6 +1,5 @@
 /* Routines to link ECOFF debugging information.
-   Copyright 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
-   2004, 2005, 2006, 2007, 2008, 2009, 2012  Free Software Foundation, Inc.
+   Copyright (C) 1993-2015 Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support, <ian@cygnus.com>.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -1788,7 +1787,7 @@ mk_fdrtab (bfd *abfd,
             'lookup_line'.  */
          /* The address of the first PDR is the offset of that
             procedure relative to the beginning of file FDR.  */
-         tab->base_addr = fdr_ptr->adr; 
+         tab->base_addr = fdr_ptr->adr;
        }
       else
        {
@@ -1887,7 +1886,7 @@ lookup_line (bfd *abfd,
   i = fdrtab_lookup (line_info, offset);
   if (i < 0)
     return FALSE;              /* no FDR, no fun...  */
-  
+
   /* eraxxon: 'fdrtab_lookup' doesn't give what we want, at least for Compaq's
      C++ compiler 6.2.  Consider three FDRs with starting addresses of x, y,
      and z, respectively, such that x < y < z.  Assume further that
@@ -2052,7 +2051,7 @@ lookup_line (bfd *abfd,
         read stabs FDRs as ECOFF ones.  However, I don't think this will
         harm anything.  */
       i = 0;
-      
+
       /* Search FDR list starting at tab[i] for the PDR that best matches
          OFFSET.  Normally, the FDR list is only one entry long.  */
       best_fdr = NULL;
@@ -2097,7 +2096,7 @@ lookup_line (bfd *abfd,
 
          if (!best_pdr || (min_dist >= 0 && min_dist < best_dist))
            {
-             best_dist = (bfd_vma) min_dist;  
+             best_dist = (bfd_vma) min_dist;
              best_fdr = fdr_ptr;
              best_pdr = pdr_hold;
            }
This page took 0.025644 seconds and 4 git commands to generate.