diff options
author | Alan Modra <amodra@bigpond.net.au> | 2006-06-01 03:45:58 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2006-06-01 03:45:58 +0000 |
commit | 861f275c6fc3922882e5c83786b425fe1ba55b8f (patch) | |
tree | 3cf1b799d4971ac7c5fded783e678dfde75b460c /bfd/sparclinux.c | |
parent | af823f27e067bcdd7e352702122f2e8f0999b56b (diff) | |
download | gdb-861f275c6fc3922882e5c83786b425fe1ba55b8f.tar.gz |
* stabs.c (_bfd_link_section_stabs): Use bfd_make_section*_with_flags
instead of bfd_make_section*.
* aix386-core.c: Likewise.
* aix5ppc-core.c: Likewise.
* aout-adobe.c: Likewise.
* aoutf1.h: Likewise.
* binary.c: Likewise.
* cisco-core.c: Likewise.
* coff-arm.c: Likewise.
* coff-h8300.c: Likewise.
* elf.c: Likewise.
* elf32-bfin.c: Likewise.
* elf32-m32c.c: Likewise.
* hppabsd-core.c: Likewise.
* hpux-core.c: Likewise.
* i386linux.c: Likewise.
* ieee.c: Likewise.
* ihex.c: Likewise.
* irix-core.c: Likewise.
* lynx-core.c: Likewise.
* m68klinux.c: Likewise.
* mach-o.c: Likewise.
* netbsd-core.c: Likewise.
* nlmcode.h: Likewise.
* opncls.c: Likewise.
* osf-core.c: Likewise.
* peXXigen.c: Likewise.
* ppcboot.c: Likewise.
* ptrace-core.c: Likewise.
* rs6000-core.c: Likewise.
* sco5-core.c: Likewise.
* sparclinux.c: Likewise.
* srec.c: Likewise.
* sunos.c: Likewise.
* trad-core.c: Likewise.
* xcofflink.c: Likewise.
* xsym.c: Likewise.
Diffstat (limited to 'bfd/sparclinux.c')
-rw-r--r-- | bfd/sparclinux.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bfd/sparclinux.c b/bfd/sparclinux.c index d8659eec16b..6b534e3a4d3 100644 --- a/bfd/sparclinux.c +++ b/bfd/sparclinux.c @@ -313,9 +313,8 @@ linux_link_create_dynamic_sections (abfd, info) /* We choose to use the name ".linux-dynamic" for the fixup table. Why not? */ - s = bfd_make_section (abfd, ".linux-dynamic"); + s = bfd_make_section_with_flags (abfd, ".linux-dynamic", flags); if (s == NULL - || ! bfd_set_section_flags (abfd, s, flags) || ! bfd_set_section_alignment (abfd, s, 2)) return FALSE; s->size = 0; |