mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-01 22:34:22 +08:00
* elf32-arm.c (elf32_arm_begin_write_processing): Do not use a K&R
declaration. (elf32_arm_symbian_modify_segment_map): Likewise.
This commit is contained in:
parent
08d1f311bf
commit
b34af79cca
@ -1,3 +1,9 @@
|
|||||||
|
2004-11-09 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
|
* elf32-arm.c (elf32_arm_begin_write_processing): Do not use a K&R
|
||||||
|
declaration.
|
||||||
|
(elf32_arm_symbian_modify_segment_map): Likewise.
|
||||||
|
|
||||||
2004-11-09 Daniel Jacobowitz <dan@debian.org>
|
2004-11-09 Daniel Jacobowitz <dan@debian.org>
|
||||||
|
|
||||||
From David Poole <daveml@mbuf.com>:
|
From David Poole <daveml@mbuf.com>:
|
||||||
|
@ -5624,17 +5624,10 @@ static struct bfd_elf_special_section const
|
|||||||
{ NULL, 0, 0, 0, 0 }
|
{ NULL, 0, 0, 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
static bfd_boolean
|
|
||||||
elf32_arm_symbian_modify_segment_map
|
|
||||||
PARAMS ((bfd *, struct bfd_link_info *));
|
|
||||||
static void
|
static void
|
||||||
elf32_arm_symbian_begin_write_processing
|
elf32_arm_symbian_begin_write_processing (bfd *abfd,
|
||||||
PARAMS ((bfd *, bfd_boolean));
|
struct bfd_link_info *link_info
|
||||||
|
ATTRIBUTE_UNUSED)
|
||||||
static void
|
|
||||||
elf32_arm_symbian_begin_write_processing (abfd, linker)
|
|
||||||
bfd *abfd;
|
|
||||||
bfd_boolean linker;
|
|
||||||
{
|
{
|
||||||
/* BPABI objects are never loaded directly by an OS kernel; they are
|
/* BPABI objects are never loaded directly by an OS kernel; they are
|
||||||
processed by a postlinker first, into an OS-specific format. If
|
processed by a postlinker first, into an OS-specific format. If
|
||||||
@ -5648,9 +5641,9 @@ elf32_arm_symbian_begin_write_processing (abfd, linker)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static bfd_boolean
|
static bfd_boolean
|
||||||
elf32_arm_symbian_modify_segment_map (abfd, info)
|
elf32_arm_symbian_modify_segment_map (bfd *abfd,
|
||||||
bfd *abfd;
|
struct bfd_link_info *info
|
||||||
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
ATTRIBUTE_UNUSED)
|
||||||
{
|
{
|
||||||
struct elf_segment_map *m;
|
struct elf_segment_map *m;
|
||||||
asection *dynsec;
|
asection *dynsec;
|
||||||
|
Loading…
Reference in New Issue
Block a user