Deleted Added
full compact
coffgen.c (104834) coffgen.c (107492)
1/* Support for the generic parts of COFF, for BFD.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002
4 Free Software Foundation, Inc.
5 Written by Cygnus Support.
6
7This file is part of BFD, the Binary File Descriptor library.
8

--- 2182 unchanged lines hidden (view full) ---

2191 function for the is_local_label_name entry point, but some may
2192 override it. */
2193
2194boolean
2195_bfd_coff_is_local_label_name (abfd, name)
2196 bfd *abfd ATTRIBUTE_UNUSED;
2197 const char *name;
2198{
1/* Support for the generic parts of COFF, for BFD.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002
4 Free Software Foundation, Inc.
5 Written by Cygnus Support.
6
7This file is part of BFD, the Binary File Descriptor library.
8

--- 2182 unchanged lines hidden (view full) ---

2191 function for the is_local_label_name entry point, but some may
2192 override it. */
2193
2194boolean
2195_bfd_coff_is_local_label_name (abfd, name)
2196 bfd *abfd ATTRIBUTE_UNUSED;
2197 const char *name;
2198{
2199 return name[0] == '.' && name[1] == 'L';
2199 return (boolean) (name[0] == '.' && name[1] == 'L');
2200}
2201
2202/* Provided a BFD, a section and an offset (in bytes, not octets) into the
2203 section, calculate and return the name of the source file and the line
2204 nearest to the wanted location. */
2205
2206boolean
2207coff_find_nearest_line (abfd, section, symbols, offset, filename_ptr,

--- 293 unchanged lines hidden ---
2200}
2201
2202/* Provided a BFD, a section and an offset (in bytes, not octets) into the
2203 section, calculate and return the name of the source file and the line
2204 nearest to the wanted location. */
2205
2206boolean
2207coff_find_nearest_line (abfd, section, symbols, offset, filename_ptr,

--- 293 unchanged lines hidden ---