summaryrefslogtreecommitdiff
path: root/bfd/elf32-m32r.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2005-07-05 06:23:37 +0000
committerAlan Modra <amodra@bigpond.net.au>2005-07-05 06:23:37 +0000
commitd3efd01943228097fe9ad6b61edc7949802fe718 (patch)
treea65dbb50adb8caf5871e9e1518cc05cf968cd404 /bfd/elf32-m32r.c
parent990d1bad8b2cf232b224540c68840353a81ce11e (diff)
downloadgdb-d3efd01943228097fe9ad6b61edc7949802fe718.tar.gz
* elf.c (special_sections): Move const qualifier.
(special_sections_b..special_sections_t): Likewise. * elf32-arm.c (elf32_arm_symbian_get_sec_type_attr): Remove duplicate const. (elf32_arm_symbian_special_sections): Move const qualifier. * elf32-m32r.c: Similarly. * elf32-m68hc11.c: Similarly. * elf32-m68hc12.c: Similarly. * elf32-mcore.c: Similarly. * elf32-ppc.c: Similarly. * elf32-sh64.c: Similarly. * elf32-v850.c: Similarly. * elf32-xtensa.c: Similarly. * elf64-alpha.c: Similarly. * elf64-hppa.c: Similarly. * elf64-ppc.c: Similarly. * elf64-sh64.c: Similarly. * elfxx-ia64.c: Similarly. * elfxx-mips.c: Similarly.
Diffstat (limited to 'bfd/elf32-m32r.c')
-rw-r--r--bfd/elf32-m32r.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf32-m32r.c b/bfd/elf32-m32r.c
index 6972ad30ca4..d29a7d3621c 100644
--- a/bfd/elf32-m32r.c
+++ b/bfd/elf32-m32r.c
@@ -4013,7 +4013,7 @@ m32r_elf_check_relocs (bfd *abfd,
return TRUE;
}
-static struct bfd_elf_special_section const m32r_elf_special_sections[] =
+static const struct bfd_elf_special_section m32r_elf_special_sections[] =
{
{ ".sbss", 5, -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
{ ".sdata", 6, -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
@@ -4023,7 +4023,7 @@ static struct bfd_elf_special_section const m32r_elf_special_sections[] =
static const struct bfd_elf_special_section *
m32r_elf_get_sec_type_attr (bfd *abfd, asection *sec)
{
- const struct bfd_elf_special_section const *ssect;
+ const struct bfd_elf_special_section *ssect;
/* See if this is one of the special sections. */
if (sec->name == NULL)