mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-02 02:45:37 +08:00
update copyright dates
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
/* BFD semi-generic back-end for a.out binaries.
|
/* BFD semi-generic back-end for a.out binaries.
|
||||||
Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
|
Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||||
Written by Cygnus Support.
|
Written by Cygnus Support.
|
||||||
|
|
||||||
This file is part of BFD, the Binary File Descriptor library.
|
This file is part of BFD, the Binary File Descriptor library.
|
||||||
@ -240,7 +240,7 @@ HOWTO(10, 0, 2, 32, false, 0, complain_overflow_bitfield,0,"BASE32", f
|
|||||||
|
|
||||||
#define TABLE_SIZE(TABLE) (sizeof(TABLE)/sizeof(TABLE[0]))
|
#define TABLE_SIZE(TABLE) (sizeof(TABLE)/sizeof(TABLE[0]))
|
||||||
|
|
||||||
CONST struct reloc_howto_struct *
|
reloc_howto_type *
|
||||||
NAME(aout,reloc_type_lookup) (abfd,code)
|
NAME(aout,reloc_type_lookup) (abfd,code)
|
||||||
bfd *abfd;
|
bfd *abfd;
|
||||||
bfd_reloc_code_real_type code;
|
bfd_reloc_code_real_type code;
|
||||||
@ -268,7 +268,7 @@ NAME(aout,reloc_type_lookup) (abfd,code)
|
|||||||
EXT (BFD_RELOC_SPARC_WDISP22, 7);
|
EXT (BFD_RELOC_SPARC_WDISP22, 7);
|
||||||
EXT (BFD_RELOC_SPARC13, 10);
|
EXT (BFD_RELOC_SPARC13, 10);
|
||||||
EXT (BFD_RELOC_SPARC_BASE13, 15);
|
EXT (BFD_RELOC_SPARC_BASE13, 15);
|
||||||
default: return (CONST struct reloc_howto_struct *) 0;
|
default: return (reloc_howto_type *) NULL;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
/* std relocs */
|
/* std relocs */
|
||||||
@ -281,7 +281,7 @@ NAME(aout,reloc_type_lookup) (abfd,code)
|
|||||||
STD (BFD_RELOC_32_PCREL, 6);
|
STD (BFD_RELOC_32_PCREL, 6);
|
||||||
STD (BFD_RELOC_16_BASEREL, 9);
|
STD (BFD_RELOC_16_BASEREL, 9);
|
||||||
STD (BFD_RELOC_32_BASEREL, 10);
|
STD (BFD_RELOC_32_BASEREL, 10);
|
||||||
default: return (CONST struct reloc_howto_struct *) 0;
|
default: return (reloc_howto_type *) NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* BFD back-end for Motorola M68K COFF LynxOS files.
|
/* BFD back-end for Motorola M68K COFF LynxOS files.
|
||||||
Copyright 1993, 1994 Free Software Foundation, Inc.
|
Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||||
Written by Cygnus Support.
|
Written by Cygnus Support.
|
||||||
|
|
||||||
This file is part of BFD, the Binary File Descriptor library.
|
This file is part of BFD, the Binary File Descriptor library.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* BFD back-end for Hitachi Super-H COFF binaries.
|
/* BFD back-end for Hitachi Super-H COFF binaries.
|
||||||
Copyright 1993, 1994 Free Software Foundation, Inc.
|
Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||||
Contributed by Cygnus Support.
|
Contributed by Cygnus Support.
|
||||||
Written by Steve Chamberlain, <sac@cygnus.com>.
|
Written by Steve Chamberlain, <sac@cygnus.com>.
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* MIPS-specific support for 32-bit ELF
|
/* MIPS-specific support for 32-bit ELF
|
||||||
Copyright 1993, 1994 Free Software Foundation, Inc.
|
Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Most of the information added by Ian Lance Taylor, Cygnus Support,
|
Most of the information added by Ian Lance Taylor, Cygnus Support,
|
||||||
<ian@cygnus.com>.
|
<ian@cygnus.com>.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* ELF executable support for BFD.
|
/* ELF executable support for BFD.
|
||||||
Copyright 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
|
Copyright 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Written by Fred Fish @ Cygnus Support, from information published
|
Written by Fred Fish @ Cygnus Support, from information published
|
||||||
in "UNIX System V Release 4, Programmers Guide: ANSI C and
|
in "UNIX System V Release 4, Programmers Guide: ANSI C and
|
||||||
@ -6499,7 +6499,7 @@ elf_reloc_link_order (output_bfd, info, output_section, link_order)
|
|||||||
asection *output_section;
|
asection *output_section;
|
||||||
struct bfd_link_order *link_order;
|
struct bfd_link_order *link_order;
|
||||||
{
|
{
|
||||||
const reloc_howto_type *howto;
|
reloc_howto_type *howto;
|
||||||
long indx;
|
long indx;
|
||||||
bfd_vma offset;
|
bfd_vma offset;
|
||||||
struct elf_link_hash_entry **rel_hash_ptr;
|
struct elf_link_hash_entry **rel_hash_ptr;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* BFD back-end for s-record objects.
|
/* BFD back-end for s-record objects.
|
||||||
Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
|
Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
|
||||||
Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
|
Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
|
||||||
|
|
||||||
This file is part of BFD, the Binary File Descriptor library.
|
This file is part of BFD, the Binary File Descriptor library.
|
||||||
@ -140,7 +140,6 @@ static CONST char digs[] = "0123456789ABCDEF";
|
|||||||
static void
|
static void
|
||||||
srec_init ()
|
srec_init ()
|
||||||
{
|
{
|
||||||
unsigned int i;
|
|
||||||
static boolean inited = false;
|
static boolean inited = false;
|
||||||
|
|
||||||
if (inited == false)
|
if (inited == false)
|
||||||
|
Reference in New Issue
Block a user