diff options
author | Alan Modra <amodra@gmail.com> | 2020-12-17 08:33:39 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-12-18 10:34:16 +1030 |
commit | bd38246a45dc199ce32b50878670bbbdf7e27ad5 (patch) | |
tree | fcc0851e06cfe59387319a1ad754b6fd1f64e35c /bfd/elf32-ppc.c | |
parent | 7f3a18cfb58deb36e05469d94e7b9e48b19d90af (diff) | |
download | gdb-bd38246a45dc199ce32b50878670bbbdf7e27ad5.zip gdb-bd38246a45dc199ce32b50878670bbbdf7e27ad5.tar.gz gdb-bd38246a45dc199ce32b50878670bbbdf7e27ad5.tar.bz2 |
Constify more arrays
bfd/
* coff-z80.c (bfd_howto_type): Make typedef const.
* elf32-z80.c (bfd_howto_type): Likewise.
* elf32-m32c.c (EncodingTable): Likewise.
* elf32-csky.c (csky_arch_for_merge): Likewise.
(csky_archs): Use typedef.
* elf32-m68hc11.c (m68hc11_direct_relax_table): Make const.
(find_relaxable_insn, m68hc11_elf_relax_section): Adjust to suit.
* elf32-ppc.c (ppc_alt_plt): Make const.
* elf32-rl78.c (relax_addr16): Likewise.
* targets.c (_bfd_associated_vector): Likewise.
(bfd_target_vector, bfd_associated_vector): Likewise.
* libbfd-in.h (bfd_target_vector, bfd_associated_vector): Likewise.
* libbfd.h: Regenerate.
include/
* opcode/arc-attrs.h (CONFLICT_LIST): Make const.
Diffstat (limited to 'bfd/elf32-ppc.c')
-rw-r--r-- | bfd/elf32-ppc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index 66265ef..9d8fa66 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -1491,7 +1491,7 @@ static const struct bfd_elf_special_section ppc_elf_special_sections[] = }; /* This is what we want for new plt/got. */ -static struct bfd_elf_special_section ppc_alt_plt = +static const struct bfd_elf_special_section ppc_alt_plt = { STRING_COMMA_LEN (".plt"), 0, SHT_PROGBITS, SHF_ALLOC }; static const struct bfd_elf_special_section * |