* vms-tir.c: Add missing prototypes.
* vms-hdr.c: Likewise. * vms-gsd.c: Likewise. * vms-misc.c: Likewise.
This commit is contained in:
parent
3ca047d39a
commit
524f76c97e
5 changed files with 34 additions and 5 deletions
|
@ -1,3 +1,10 @@
|
|||
2001-09-01 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* vms-tir.c: Add missing prototypes.
|
||||
* vms-hdr.c: Likewise.
|
||||
* vms-gsd.c: Likewise.
|
||||
* vms-misc.c: Likewise.
|
||||
|
||||
2001-08-31 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* elf32-mips.c (_bfd_mips_elf_check_relocs): Report filename
|
||||
|
@ -77,8 +84,8 @@
|
|||
|
||||
2001-08-29 Tom Rix <trix@redhat.com>
|
||||
|
||||
* xcofflink.c (xcoff_link_add_symbols): Fix XTY_LD symbol that
|
||||
does not follow a XTY_SD.
|
||||
* xcofflink.c (xcoff_link_add_symbols): Fix XTY_LD symbol that
|
||||
does not follow a XTY_SD.
|
||||
|
||||
2001-08-29 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* vms-gsd.c -- BFD back-end for VAX (openVMS/VAX) and
|
||||
EVAX (openVMS/Alpha) files.
|
||||
Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
||||
Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
||||
|
||||
go and read the openVMS linker manual (esp. appendix B)
|
||||
if you don't know what's going on here :-)
|
||||
|
@ -139,6 +139,9 @@ static struct sec_flags_struct evax_section_flags[] = {
|
|||
(SEC_IN_MEMORY|SEC_DATA|SEC_HAS_CONTENTS|SEC_ALLOC|SEC_LOAD) }
|
||||
};
|
||||
|
||||
static flagword vms_secflag_by_name PARAMS ((bfd *, struct sec_flags_struct *, char *, int));
|
||||
static flagword vms_esecflag_by_name PARAMS ((struct sec_flags_struct *, char *, int));
|
||||
|
||||
/* Retrieve bfd section flags by name and size */
|
||||
|
||||
static flagword
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* vms-hdr.c -- BFD back-end for VMS/VAX (openVMS/VAX) and
|
||||
EVAX (openVMS/Alpha) files.
|
||||
Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
||||
Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
||||
|
||||
HDR record handling functions
|
||||
EMH record handling functions
|
||||
|
@ -36,6 +36,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|||
#ifdef HAVE_ALLOCA_H
|
||||
#include <alloca.h>
|
||||
#endif
|
||||
|
||||
static unsigned char *get_vms_time_string PARAMS ((void));
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
||||
/* Read & process emh record
|
||||
|
|
|
@ -30,6 +30,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|||
|
||||
#include "vms.h"
|
||||
|
||||
static vms_section *add_new_contents PARAMS ((bfd *, sec_ptr));
|
||||
static int hash_string PARAMS ((const char *));
|
||||
static asymbol *new_symbol PARAMS ((bfd *, char *));
|
||||
|
||||
/*-----------------------------------------------------------------------------*/
|
||||
#if VMS_DEBUG
|
||||
/* debug functions */
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* vms-tir.c -- BFD back-end for VAX (openVMS/VAX) and
|
||||
EVAX (openVMS/Alpha) files.
|
||||
Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
||||
Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
||||
|
||||
TIR record handling functions
|
||||
ETIR record handling functions
|
||||
|
@ -49,6 +49,17 @@ static void image_write_b PARAMS ((bfd *abfd, unsigned int value));
|
|||
static void image_write_w PARAMS ((bfd *abfd, unsigned int value));
|
||||
static void image_write_l PARAMS ((bfd *abfd, unsigned long value));
|
||||
static void image_write_q PARAMS ((bfd *abfd, uquad value));
|
||||
static int check_section PARAMS ((bfd *, int));
|
||||
static boolean etir_sta PARAMS ((bfd *, int, unsigned char *));
|
||||
static boolean etir_sto PARAMS ((bfd *, int, unsigned char *));
|
||||
static boolean etir_opr PARAMS ((bfd *, int, unsigned char *));
|
||||
static boolean etir_ctl PARAMS ((bfd *, int, unsigned char *));
|
||||
static boolean etir_stc PARAMS ((bfd *, int, unsigned char *));
|
||||
static asection *new_section PARAMS ((bfd *, int));
|
||||
static int alloc_section PARAMS ((bfd *, unsigned int));
|
||||
static int etir_cmd PARAMS ((bfd *, int, unsigned char *));
|
||||
static int analyze_tir PARAMS ((bfd *, unsigned char *, unsigned int));
|
||||
static int analyze_etir PARAMS ((bfd *, unsigned char *, unsigned int));
|
||||
|
||||
/*-----------------------------------------------------------------------------*/
|
||||
|
||||
|
|
Loading…
Reference in a new issue