1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-16 15:11:52 +00:00

Merge rev 1.2 (configuration changes to support FreeBSD) into Binutils 2.15.

This commit is contained in:
David E. O'Brien 2004-06-16 06:13:06 +00:00
parent a7c7527613
commit b543ed2b74
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=130566

View File

@ -1,5 +1,5 @@
/* BFD back-end definitions used by all FreeBSD targets.
Copyright 1990, 1991, 1992, 1996, 1997, 2000, 2001
Copyright 1990, 1991, 1992, 1996, 1997, 2000, 2001, 2002
Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
@ -70,13 +70,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define MY_bfd_final_link MY(bfd_final_link)
#define MY_write_object_contents MY(write_object_contents)
static boolean MY(bfd_final_link) PARAMS ((bfd *, struct bfd_link_info *));
static boolean MY(write_object_contents) PARAMS ((bfd *abfd));
static bfd_boolean MY(bfd_final_link) PARAMS ((bfd *, struct bfd_link_info *));
static bfd_boolean MY(write_object_contents) PARAMS ((bfd *abfd));
static long freebsd_swap_magic PARAMS ((void *ext));
#include "aout-target.h"
static boolean
static bfd_boolean
MY(bfd_final_link) (abfd, info)
bfd *abfd;
struct bfd_link_info *info;
@ -107,7 +107,7 @@ freebsd_swap_magic (ext)
Section contents have already been written. We write the
file header, symbols, and relocation. */
static boolean
static bfd_boolean
MY(write_object_contents) (abfd)
bfd *abfd;
{
@ -140,5 +140,5 @@ MY(write_object_contents) (abfd)
WRITE_HEADERS(abfd, execp);
return true;
return TRUE;
}