From db17577b306fb27ddfe3d144eb6d740d66e7ef8e Mon Sep 17 00:00:00 2001 From: Keith Seitz Date: Fri, 9 Sep 2022 08:44:50 -0700 Subject: Constify target_desc declarations and features/Makefile --- gdb/arch/ppc-linux-common.c | 2 +- gdb/arch/ppc-linux-tdesc.h | 40 +++++++++++----------- gdb/features/microblaze-with-stack-protect.c | 2 +- gdb/features/microblaze.c | 2 +- gdb/features/mips-dsp-linux.c | 2 +- gdb/features/mips-linux.c | 2 +- gdb/features/mips64-dsp-linux.c | 2 +- gdb/features/mips64-linux.c | 2 +- gdb/features/nds32.c | 2 +- gdb/features/nios2.c | 2 +- gdb/features/or1k-linux.c | 2 +- gdb/features/or1k.c | 2 +- gdb/features/rs6000/powerpc-32.c | 2 +- gdb/features/rs6000/powerpc-32l.c | 2 +- gdb/features/rs6000/powerpc-403.c | 2 +- gdb/features/rs6000/powerpc-403gc.c | 2 +- gdb/features/rs6000/powerpc-405.c | 2 +- gdb/features/rs6000/powerpc-505.c | 2 +- gdb/features/rs6000/powerpc-601.c | 2 +- gdb/features/rs6000/powerpc-602.c | 2 +- gdb/features/rs6000/powerpc-603.c | 2 +- gdb/features/rs6000/powerpc-604.c | 2 +- gdb/features/rs6000/powerpc-64.c | 2 +- gdb/features/rs6000/powerpc-64l.c | 2 +- gdb/features/rs6000/powerpc-7400.c | 2 +- gdb/features/rs6000/powerpc-750.c | 2 +- gdb/features/rs6000/powerpc-860.c | 2 +- gdb/features/rs6000/powerpc-altivec32.c | 2 +- gdb/features/rs6000/powerpc-altivec32l.c | 2 +- gdb/features/rs6000/powerpc-altivec64.c | 2 +- gdb/features/rs6000/powerpc-altivec64l.c | 2 +- gdb/features/rs6000/powerpc-e500.c | 2 +- gdb/features/rs6000/powerpc-e500l.c | 2 +- gdb/features/rs6000/powerpc-isa205-32l.c | 2 +- gdb/features/rs6000/powerpc-isa205-64l.c | 2 +- gdb/features/rs6000/powerpc-isa205-altivec32l.c | 2 +- gdb/features/rs6000/powerpc-isa205-altivec64l.c | 2 +- .../rs6000/powerpc-isa205-ppr-dscr-vsx32l.c | 2 +- .../rs6000/powerpc-isa205-ppr-dscr-vsx64l.c | 2 +- gdb/features/rs6000/powerpc-isa205-vsx32l.c | 2 +- gdb/features/rs6000/powerpc-isa205-vsx64l.c | 2 +- gdb/features/rs6000/powerpc-isa207-htm-vsx32l.c | 2 +- gdb/features/rs6000/powerpc-isa207-htm-vsx64l.c | 2 +- gdb/features/rs6000/powerpc-isa207-vsx32l.c | 2 +- gdb/features/rs6000/powerpc-isa207-vsx64l.c | 2 +- gdb/features/rs6000/powerpc-vsx32.c | 2 +- gdb/features/rs6000/powerpc-vsx32l.c | 2 +- gdb/features/rs6000/powerpc-vsx64.c | 2 +- gdb/features/rs6000/powerpc-vsx64l.c | 2 +- gdb/features/rs6000/rs6000.c | 2 +- gdb/features/rx.c | 2 +- gdb/features/s390-gs-linux64.c | 2 +- gdb/features/s390-linux32.c | 2 +- gdb/features/s390-linux32v1.c | 2 +- gdb/features/s390-linux32v2.c | 2 +- gdb/features/s390-linux64.c | 2 +- gdb/features/s390-linux64v1.c | 2 +- gdb/features/s390-linux64v2.c | 2 +- gdb/features/s390-te-linux64.c | 2 +- gdb/features/s390-tevx-linux64.c | 2 +- gdb/features/s390-vx-linux64.c | 2 +- gdb/features/s390x-gs-linux64.c | 2 +- gdb/features/s390x-linux64.c | 2 +- gdb/features/s390x-linux64v1.c | 2 +- gdb/features/s390x-linux64v2.c | 2 +- gdb/features/s390x-te-linux64.c | 2 +- gdb/features/s390x-tevx-linux64.c | 2 +- gdb/features/s390x-vx-linux64.c | 2 +- gdb/features/sparc/sparc32-solaris.c | 2 +- gdb/features/sparc/sparc64-solaris.c | 2 +- gdb/features/z80.c | 2 +- gdb/mips-linux-tdep.h | 8 ++--- gdb/nios2-tdep.h | 4 +-- gdb/rs6000-tdep.c | 2 +- gdb/s390-linux-tdep.h | 30 ++++++++-------- gdb/s390-tdep.h | 4 +-- gdb/target-descriptions.c | 2 +- 77 files changed, 115 insertions(+), 115 deletions(-) (limited to 'gdb') diff --git a/gdb/arch/ppc-linux-common.c b/gdb/arch/ppc-linux-common.c index 0252384..a0c38f5 100644 --- a/gdb/arch/ppc-linux-common.c +++ b/gdb/arch/ppc-linux-common.c @@ -46,7 +46,7 @@ ppc_linux_has_isa205 (CORE_ADDR hwcap) const struct target_desc * ppc_linux_match_description (struct ppc_linux_features features) { - struct target_desc *tdesc = NULL; + const struct target_desc *tdesc = NULL; if (features.wordsize == 8) { diff --git a/gdb/arch/ppc-linux-tdesc.h b/gdb/arch/ppc-linux-tdesc.h index 6bda064..b17e033 100644 --- a/gdb/arch/ppc-linux-tdesc.h +++ b/gdb/arch/ppc-linux-tdesc.h @@ -22,25 +22,25 @@ struct target_desc; -extern struct target_desc *tdesc_powerpc_32l; -extern struct target_desc *tdesc_powerpc_altivec32l; -extern struct target_desc *tdesc_powerpc_vsx32l; -extern struct target_desc *tdesc_powerpc_isa205_32l; -extern struct target_desc *tdesc_powerpc_isa205_altivec32l; -extern struct target_desc *tdesc_powerpc_isa205_vsx32l; -extern struct target_desc *tdesc_powerpc_isa205_ppr_dscr_vsx32l; -extern struct target_desc *tdesc_powerpc_isa207_vsx32l; -extern struct target_desc *tdesc_powerpc_isa207_htm_vsx32l; -extern struct target_desc *tdesc_powerpc_e500l; - -extern struct target_desc *tdesc_powerpc_64l; -extern struct target_desc *tdesc_powerpc_altivec64l; -extern struct target_desc *tdesc_powerpc_vsx64l; -extern struct target_desc *tdesc_powerpc_isa205_64l; -extern struct target_desc *tdesc_powerpc_isa205_altivec64l; -extern struct target_desc *tdesc_powerpc_isa205_vsx64l; -extern struct target_desc *tdesc_powerpc_isa205_ppr_dscr_vsx64l; -extern struct target_desc *tdesc_powerpc_isa207_vsx64l; -extern struct target_desc *tdesc_powerpc_isa207_htm_vsx64l; +extern const struct target_desc *tdesc_powerpc_32l; +extern const struct target_desc *tdesc_powerpc_altivec32l; +extern const struct target_desc *tdesc_powerpc_vsx32l; +extern const struct target_desc *tdesc_powerpc_isa205_32l; +extern const struct target_desc *tdesc_powerpc_isa205_altivec32l; +extern const struct target_desc *tdesc_powerpc_isa205_vsx32l; +extern const struct target_desc *tdesc_powerpc_isa205_ppr_dscr_vsx32l; +extern const struct target_desc *tdesc_powerpc_isa207_vsx32l; +extern const struct target_desc *tdesc_powerpc_isa207_htm_vsx32l; +extern const struct target_desc *tdesc_powerpc_e500l; + +extern const struct target_desc *tdesc_powerpc_64l; +extern const struct target_desc *tdesc_powerpc_altivec64l; +extern const struct target_desc *tdesc_powerpc_vsx64l; +extern const struct target_desc *tdesc_powerpc_isa205_64l; +extern const struct target_desc *tdesc_powerpc_isa205_altivec64l; +extern const struct target_desc *tdesc_powerpc_isa205_vsx64l; +extern const struct target_desc *tdesc_powerpc_isa205_ppr_dscr_vsx64l; +extern const struct target_desc *tdesc_powerpc_isa207_vsx64l; +extern const struct target_desc *tdesc_powerpc_isa207_htm_vsx64l; #endif /* ARCH_PPC_LINUX_TDESC_H */ diff --git a/gdb/features/microblaze-with-stack-protect.c b/gdb/features/microblaze-with-stack-protect.c index aa180bf..574dc02 100644 --- a/gdb/features/microblaze-with-stack-protect.c +++ b/gdb/features/microblaze-with-stack-protect.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_microblaze_with_stack_protect; +const struct target_desc *tdesc_microblaze_with_stack_protect; static void initialize_tdesc_microblaze_with_stack_protect (void) { diff --git a/gdb/features/microblaze.c b/gdb/features/microblaze.c index ef2c64c..8f1fb0a 100644 --- a/gdb/features/microblaze.c +++ b/gdb/features/microblaze.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_microblaze; +const struct target_desc *tdesc_microblaze; static void initialize_tdesc_microblaze (void) { diff --git a/gdb/features/mips-dsp-linux.c b/gdb/features/mips-dsp-linux.c index 76a9177..d9d928c 100644 --- a/gdb/features/mips-dsp-linux.c +++ b/gdb/features/mips-dsp-linux.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_mips_dsp_linux; +const struct target_desc *tdesc_mips_dsp_linux; static void initialize_tdesc_mips_dsp_linux (void) { diff --git a/gdb/features/mips-linux.c b/gdb/features/mips-linux.c index f97232c..8557bc8 100644 --- a/gdb/features/mips-linux.c +++ b/gdb/features/mips-linux.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_mips_linux; +const struct target_desc *tdesc_mips_linux; static void initialize_tdesc_mips_linux (void) { diff --git a/gdb/features/mips64-dsp-linux.c b/gdb/features/mips64-dsp-linux.c index 48d212a..80bbbcb 100644 --- a/gdb/features/mips64-dsp-linux.c +++ b/gdb/features/mips64-dsp-linux.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_mips64_dsp_linux; +const struct target_desc *tdesc_mips64_dsp_linux; static void initialize_tdesc_mips64_dsp_linux (void) { diff --git a/gdb/features/mips64-linux.c b/gdb/features/mips64-linux.c index 4b37d3d..21e8c37 100644 --- a/gdb/features/mips64-linux.c +++ b/gdb/features/mips64-linux.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_mips64_linux; +const struct target_desc *tdesc_mips64_linux; static void initialize_tdesc_mips64_linux (void) { diff --git a/gdb/features/nds32.c b/gdb/features/nds32.c index 4e52016..7a08d2c 100644 --- a/gdb/features/nds32.c +++ b/gdb/features/nds32.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_nds32; +const struct target_desc *tdesc_nds32; static void initialize_tdesc_nds32 (void) { diff --git a/gdb/features/nios2.c b/gdb/features/nios2.c index 6872aae..648f7ed 100644 --- a/gdb/features/nios2.c +++ b/gdb/features/nios2.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_nios2; +const struct target_desc *tdesc_nios2; static void initialize_tdesc_nios2 (void) { diff --git a/gdb/features/or1k-linux.c b/gdb/features/or1k-linux.c index e718d31..3eb6548 100644 --- a/gdb/features/or1k-linux.c +++ b/gdb/features/or1k-linux.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_or1k_linux; +const struct target_desc *tdesc_or1k_linux; static void initialize_tdesc_or1k_linux (void) { diff --git a/gdb/features/or1k.c b/gdb/features/or1k.c index c1fd26c..6704096 100644 --- a/gdb/features/or1k.c +++ b/gdb/features/or1k.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_or1k; +const struct target_desc *tdesc_or1k; static void initialize_tdesc_or1k (void) { diff --git a/gdb/features/rs6000/powerpc-32.c b/gdb/features/rs6000/powerpc-32.c index 4c766b7..a4f4bed 100644 --- a/gdb/features/rs6000/powerpc-32.c +++ b/gdb/features/rs6000/powerpc-32.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_32; +const struct target_desc *tdesc_powerpc_32; static void initialize_tdesc_powerpc_32 (void) { diff --git a/gdb/features/rs6000/powerpc-32l.c b/gdb/features/rs6000/powerpc-32l.c index 34cba5d..f5893bf 100644 --- a/gdb/features/rs6000/powerpc-32l.c +++ b/gdb/features/rs6000/powerpc-32l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_32l; +const struct target_desc *tdesc_powerpc_32l; static void initialize_tdesc_powerpc_32l (void) { diff --git a/gdb/features/rs6000/powerpc-403.c b/gdb/features/rs6000/powerpc-403.c index 1b16e08..2783287 100644 --- a/gdb/features/rs6000/powerpc-403.c +++ b/gdb/features/rs6000/powerpc-403.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_403; +const struct target_desc *tdesc_powerpc_403; static void initialize_tdesc_powerpc_403 (void) { diff --git a/gdb/features/rs6000/powerpc-403gc.c b/gdb/features/rs6000/powerpc-403gc.c index 4ff844d..c69a134 100644 --- a/gdb/features/rs6000/powerpc-403gc.c +++ b/gdb/features/rs6000/powerpc-403gc.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_403gc; +const struct target_desc *tdesc_powerpc_403gc; static void initialize_tdesc_powerpc_403gc (void) { diff --git a/gdb/features/rs6000/powerpc-405.c b/gdb/features/rs6000/powerpc-405.c index 4c97aa5..1146d66 100644 --- a/gdb/features/rs6000/powerpc-405.c +++ b/gdb/features/rs6000/powerpc-405.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_405; +const struct target_desc *tdesc_powerpc_405; static void initialize_tdesc_powerpc_405 (void) { diff --git a/gdb/features/rs6000/powerpc-505.c b/gdb/features/rs6000/powerpc-505.c index b9cae66..a36157f 100644 --- a/gdb/features/rs6000/powerpc-505.c +++ b/gdb/features/rs6000/powerpc-505.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_505; +const struct target_desc *tdesc_powerpc_505; static void initialize_tdesc_powerpc_505 (void) { diff --git a/gdb/features/rs6000/powerpc-601.c b/gdb/features/rs6000/powerpc-601.c index ba35dc9..ceaf789 100644 --- a/gdb/features/rs6000/powerpc-601.c +++ b/gdb/features/rs6000/powerpc-601.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_601; +const struct target_desc *tdesc_powerpc_601; static void initialize_tdesc_powerpc_601 (void) { diff --git a/gdb/features/rs6000/powerpc-602.c b/gdb/features/rs6000/powerpc-602.c index 7f69f44..eb85e69 100644 --- a/gdb/features/rs6000/powerpc-602.c +++ b/gdb/features/rs6000/powerpc-602.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_602; +const struct target_desc *tdesc_powerpc_602; static void initialize_tdesc_powerpc_602 (void) { diff --git a/gdb/features/rs6000/powerpc-603.c b/gdb/features/rs6000/powerpc-603.c index 28c3628..223919c 100644 --- a/gdb/features/rs6000/powerpc-603.c +++ b/gdb/features/rs6000/powerpc-603.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_603; +const struct target_desc *tdesc_powerpc_603; static void initialize_tdesc_powerpc_603 (void) { diff --git a/gdb/features/rs6000/powerpc-604.c b/gdb/features/rs6000/powerpc-604.c index fe0fe2f..09cbb50 100644 --- a/gdb/features/rs6000/powerpc-604.c +++ b/gdb/features/rs6000/powerpc-604.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_604; +const struct target_desc *tdesc_powerpc_604; static void initialize_tdesc_powerpc_604 (void) { diff --git a/gdb/features/rs6000/powerpc-64.c b/gdb/features/rs6000/powerpc-64.c index d0688ee..43dee10 100644 --- a/gdb/features/rs6000/powerpc-64.c +++ b/gdb/features/rs6000/powerpc-64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_64; +const struct target_desc *tdesc_powerpc_64; static void initialize_tdesc_powerpc_64 (void) { diff --git a/gdb/features/rs6000/powerpc-64l.c b/gdb/features/rs6000/powerpc-64l.c index 465c023..83a6a15 100644 --- a/gdb/features/rs6000/powerpc-64l.c +++ b/gdb/features/rs6000/powerpc-64l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_64l; +const struct target_desc *tdesc_powerpc_64l; static void initialize_tdesc_powerpc_64l (void) { diff --git a/gdb/features/rs6000/powerpc-7400.c b/gdb/features/rs6000/powerpc-7400.c index 0e71dd7..d5fbf4b 100644 --- a/gdb/features/rs6000/powerpc-7400.c +++ b/gdb/features/rs6000/powerpc-7400.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_7400; +const struct target_desc *tdesc_powerpc_7400; static void initialize_tdesc_powerpc_7400 (void) { diff --git a/gdb/features/rs6000/powerpc-750.c b/gdb/features/rs6000/powerpc-750.c index 396ec45..60a7b41 100644 --- a/gdb/features/rs6000/powerpc-750.c +++ b/gdb/features/rs6000/powerpc-750.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_750; +const struct target_desc *tdesc_powerpc_750; static void initialize_tdesc_powerpc_750 (void) { diff --git a/gdb/features/rs6000/powerpc-860.c b/gdb/features/rs6000/powerpc-860.c index 328ad19..3e9a25f 100644 --- a/gdb/features/rs6000/powerpc-860.c +++ b/gdb/features/rs6000/powerpc-860.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_860; +const struct target_desc *tdesc_powerpc_860; static void initialize_tdesc_powerpc_860 (void) { diff --git a/gdb/features/rs6000/powerpc-altivec32.c b/gdb/features/rs6000/powerpc-altivec32.c index 743ca06..41cca72 100644 --- a/gdb/features/rs6000/powerpc-altivec32.c +++ b/gdb/features/rs6000/powerpc-altivec32.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_altivec32; +const struct target_desc *tdesc_powerpc_altivec32; static void initialize_tdesc_powerpc_altivec32 (void) { diff --git a/gdb/features/rs6000/powerpc-altivec32l.c b/gdb/features/rs6000/powerpc-altivec32l.c index a19016b..9cd9355 100644 --- a/gdb/features/rs6000/powerpc-altivec32l.c +++ b/gdb/features/rs6000/powerpc-altivec32l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_altivec32l; +const struct target_desc *tdesc_powerpc_altivec32l; static void initialize_tdesc_powerpc_altivec32l (void) { diff --git a/gdb/features/rs6000/powerpc-altivec64.c b/gdb/features/rs6000/powerpc-altivec64.c index b8a157b..8422708 100644 --- a/gdb/features/rs6000/powerpc-altivec64.c +++ b/gdb/features/rs6000/powerpc-altivec64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_altivec64; +const struct target_desc *tdesc_powerpc_altivec64; static void initialize_tdesc_powerpc_altivec64 (void) { diff --git a/gdb/features/rs6000/powerpc-altivec64l.c b/gdb/features/rs6000/powerpc-altivec64l.c index 1846d06..977af8c 100644 --- a/gdb/features/rs6000/powerpc-altivec64l.c +++ b/gdb/features/rs6000/powerpc-altivec64l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_altivec64l; +const struct target_desc *tdesc_powerpc_altivec64l; static void initialize_tdesc_powerpc_altivec64l (void) { diff --git a/gdb/features/rs6000/powerpc-e500.c b/gdb/features/rs6000/powerpc-e500.c index bf62405..84f721d 100644 --- a/gdb/features/rs6000/powerpc-e500.c +++ b/gdb/features/rs6000/powerpc-e500.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_e500; +const struct target_desc *tdesc_powerpc_e500; static void initialize_tdesc_powerpc_e500 (void) { diff --git a/gdb/features/rs6000/powerpc-e500l.c b/gdb/features/rs6000/powerpc-e500l.c index 8199989..a1e133d 100644 --- a/gdb/features/rs6000/powerpc-e500l.c +++ b/gdb/features/rs6000/powerpc-e500l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_e500l; +const struct target_desc *tdesc_powerpc_e500l; static void initialize_tdesc_powerpc_e500l (void) { diff --git a/gdb/features/rs6000/powerpc-isa205-32l.c b/gdb/features/rs6000/powerpc-isa205-32l.c index 7791fa7..57fb20a 100644 --- a/gdb/features/rs6000/powerpc-isa205-32l.c +++ b/gdb/features/rs6000/powerpc-isa205-32l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa205_32l; +const struct target_desc *tdesc_powerpc_isa205_32l; static void initialize_tdesc_powerpc_isa205_32l (void) { diff --git a/gdb/features/rs6000/powerpc-isa205-64l.c b/gdb/features/rs6000/powerpc-isa205-64l.c index fb05df7..b9ce8e6 100644 --- a/gdb/features/rs6000/powerpc-isa205-64l.c +++ b/gdb/features/rs6000/powerpc-isa205-64l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa205_64l; +const struct target_desc *tdesc_powerpc_isa205_64l; static void initialize_tdesc_powerpc_isa205_64l (void) { diff --git a/gdb/features/rs6000/powerpc-isa205-altivec32l.c b/gdb/features/rs6000/powerpc-isa205-altivec32l.c index a510931..54b914c 100644 --- a/gdb/features/rs6000/powerpc-isa205-altivec32l.c +++ b/gdb/features/rs6000/powerpc-isa205-altivec32l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa205_altivec32l; +const struct target_desc *tdesc_powerpc_isa205_altivec32l; static void initialize_tdesc_powerpc_isa205_altivec32l (void) { diff --git a/gdb/features/rs6000/powerpc-isa205-altivec64l.c b/gdb/features/rs6000/powerpc-isa205-altivec64l.c index f91c2e8..42e6f03 100644 --- a/gdb/features/rs6000/powerpc-isa205-altivec64l.c +++ b/gdb/features/rs6000/powerpc-isa205-altivec64l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa205_altivec64l; +const struct target_desc *tdesc_powerpc_isa205_altivec64l; static void initialize_tdesc_powerpc_isa205_altivec64l (void) { diff --git a/gdb/features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c b/gdb/features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c index 28a7c3b..a2c6172 100644 --- a/gdb/features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c +++ b/gdb/features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa205_ppr_dscr_vsx32l; +const struct target_desc *tdesc_powerpc_isa205_ppr_dscr_vsx32l; static void initialize_tdesc_powerpc_isa205_ppr_dscr_vsx32l (void) { diff --git a/gdb/features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c b/gdb/features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c index d34a197..3e7915a 100644 --- a/gdb/features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c +++ b/gdb/features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa205_ppr_dscr_vsx64l; +const struct target_desc *tdesc_powerpc_isa205_ppr_dscr_vsx64l; static void initialize_tdesc_powerpc_isa205_ppr_dscr_vsx64l (void) { diff --git a/gdb/features/rs6000/powerpc-isa205-vsx32l.c b/gdb/features/rs6000/powerpc-isa205-vsx32l.c index 7639155..4cefcc3 100644 --- a/gdb/features/rs6000/powerpc-isa205-vsx32l.c +++ b/gdb/features/rs6000/powerpc-isa205-vsx32l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa205_vsx32l; +const struct target_desc *tdesc_powerpc_isa205_vsx32l; static void initialize_tdesc_powerpc_isa205_vsx32l (void) { diff --git a/gdb/features/rs6000/powerpc-isa205-vsx64l.c b/gdb/features/rs6000/powerpc-isa205-vsx64l.c index fad4227..2fb151d 100644 --- a/gdb/features/rs6000/powerpc-isa205-vsx64l.c +++ b/gdb/features/rs6000/powerpc-isa205-vsx64l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa205_vsx64l; +const struct target_desc *tdesc_powerpc_isa205_vsx64l; static void initialize_tdesc_powerpc_isa205_vsx64l (void) { diff --git a/gdb/features/rs6000/powerpc-isa207-htm-vsx32l.c b/gdb/features/rs6000/powerpc-isa207-htm-vsx32l.c index 78f2047..b945039 100644 --- a/gdb/features/rs6000/powerpc-isa207-htm-vsx32l.c +++ b/gdb/features/rs6000/powerpc-isa207-htm-vsx32l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa207_htm_vsx32l; +const struct target_desc *tdesc_powerpc_isa207_htm_vsx32l; static void initialize_tdesc_powerpc_isa207_htm_vsx32l (void) { diff --git a/gdb/features/rs6000/powerpc-isa207-htm-vsx64l.c b/gdb/features/rs6000/powerpc-isa207-htm-vsx64l.c index 5517201..3aa579f 100644 --- a/gdb/features/rs6000/powerpc-isa207-htm-vsx64l.c +++ b/gdb/features/rs6000/powerpc-isa207-htm-vsx64l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa207_htm_vsx64l; +const struct target_desc *tdesc_powerpc_isa207_htm_vsx64l; static void initialize_tdesc_powerpc_isa207_htm_vsx64l (void) { diff --git a/gdb/features/rs6000/powerpc-isa207-vsx32l.c b/gdb/features/rs6000/powerpc-isa207-vsx32l.c index 7fc15bf..e5ce7f9 100644 --- a/gdb/features/rs6000/powerpc-isa207-vsx32l.c +++ b/gdb/features/rs6000/powerpc-isa207-vsx32l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa207_vsx32l; +const struct target_desc *tdesc_powerpc_isa207_vsx32l; static void initialize_tdesc_powerpc_isa207_vsx32l (void) { diff --git a/gdb/features/rs6000/powerpc-isa207-vsx64l.c b/gdb/features/rs6000/powerpc-isa207-vsx64l.c index 3ad55f7..adf6d3e 100644 --- a/gdb/features/rs6000/powerpc-isa207-vsx64l.c +++ b/gdb/features/rs6000/powerpc-isa207-vsx64l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_isa207_vsx64l; +const struct target_desc *tdesc_powerpc_isa207_vsx64l; static void initialize_tdesc_powerpc_isa207_vsx64l (void) { diff --git a/gdb/features/rs6000/powerpc-vsx32.c b/gdb/features/rs6000/powerpc-vsx32.c index d7278d9..6fccdb3 100644 --- a/gdb/features/rs6000/powerpc-vsx32.c +++ b/gdb/features/rs6000/powerpc-vsx32.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_vsx32; +const struct target_desc *tdesc_powerpc_vsx32; static void initialize_tdesc_powerpc_vsx32 (void) { diff --git a/gdb/features/rs6000/powerpc-vsx32l.c b/gdb/features/rs6000/powerpc-vsx32l.c index 7097ffa..1efe880 100644 --- a/gdb/features/rs6000/powerpc-vsx32l.c +++ b/gdb/features/rs6000/powerpc-vsx32l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_vsx32l; +const struct target_desc *tdesc_powerpc_vsx32l; static void initialize_tdesc_powerpc_vsx32l (void) { diff --git a/gdb/features/rs6000/powerpc-vsx64.c b/gdb/features/rs6000/powerpc-vsx64.c index 7e90559..df6d0f4 100644 --- a/gdb/features/rs6000/powerpc-vsx64.c +++ b/gdb/features/rs6000/powerpc-vsx64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_vsx64; +const struct target_desc *tdesc_powerpc_vsx64; static void initialize_tdesc_powerpc_vsx64 (void) { diff --git a/gdb/features/rs6000/powerpc-vsx64l.c b/gdb/features/rs6000/powerpc-vsx64l.c index 4affa35..89aa13d 100644 --- a/gdb/features/rs6000/powerpc-vsx64l.c +++ b/gdb/features/rs6000/powerpc-vsx64l.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_powerpc_vsx64l; +const struct target_desc *tdesc_powerpc_vsx64l; static void initialize_tdesc_powerpc_vsx64l (void) { diff --git a/gdb/features/rs6000/rs6000.c b/gdb/features/rs6000/rs6000.c index 826d9ad..4aa5a87 100644 --- a/gdb/features/rs6000/rs6000.c +++ b/gdb/features/rs6000/rs6000.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_rs6000; +const struct target_desc *tdesc_rs6000; static void initialize_tdesc_rs6000 (void) { diff --git a/gdb/features/rx.c b/gdb/features/rx.c index dd765c2..825a4ac 100644 --- a/gdb/features/rx.c +++ b/gdb/features/rx.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_rx; +const struct target_desc *tdesc_rx; static void initialize_tdesc_rx (void) { diff --git a/gdb/features/s390-gs-linux64.c b/gdb/features/s390-gs-linux64.c index 331b6e2..d48f831 100644 --- a/gdb/features/s390-gs-linux64.c +++ b/gdb/features/s390-gs-linux64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390_gs_linux64; +const struct target_desc *tdesc_s390_gs_linux64; static void initialize_tdesc_s390_gs_linux64 (void) { diff --git a/gdb/features/s390-linux32.c b/gdb/features/s390-linux32.c index 18b0d0f..03ec11a 100644 --- a/gdb/features/s390-linux32.c +++ b/gdb/features/s390-linux32.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390_linux32; +const struct target_desc *tdesc_s390_linux32; static void initialize_tdesc_s390_linux32 (void) { diff --git a/gdb/features/s390-linux32v1.c b/gdb/features/s390-linux32v1.c index d1180f9..65de6f2 100644 --- a/gdb/features/s390-linux32v1.c +++ b/gdb/features/s390-linux32v1.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390_linux32v1; +const struct target_desc *tdesc_s390_linux32v1; static void initialize_tdesc_s390_linux32v1 (void) { diff --git a/gdb/features/s390-linux32v2.c b/gdb/features/s390-linux32v2.c index d1da31a..0e3e04d 100644 --- a/gdb/features/s390-linux32v2.c +++ b/gdb/features/s390-linux32v2.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390_linux32v2; +const struct target_desc *tdesc_s390_linux32v2; static void initialize_tdesc_s390_linux32v2 (void) { diff --git a/gdb/features/s390-linux64.c b/gdb/features/s390-linux64.c index 235da0f..f0ec919 100644 --- a/gdb/features/s390-linux64.c +++ b/gdb/features/s390-linux64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390_linux64; +const struct target_desc *tdesc_s390_linux64; static void initialize_tdesc_s390_linux64 (void) { diff --git a/gdb/features/s390-linux64v1.c b/gdb/features/s390-linux64v1.c index 108c0ef..9a360c7 100644 --- a/gdb/features/s390-linux64v1.c +++ b/gdb/features/s390-linux64v1.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390_linux64v1; +const struct target_desc *tdesc_s390_linux64v1; static void initialize_tdesc_s390_linux64v1 (void) { diff --git a/gdb/features/s390-linux64v2.c b/gdb/features/s390-linux64v2.c index 057a129..18bc6ed 100644 --- a/gdb/features/s390-linux64v2.c +++ b/gdb/features/s390-linux64v2.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390_linux64v2; +const struct target_desc *tdesc_s390_linux64v2; static void initialize_tdesc_s390_linux64v2 (void) { diff --git a/gdb/features/s390-te-linux64.c b/gdb/features/s390-te-linux64.c index f8f2217..a8909b3 100644 --- a/gdb/features/s390-te-linux64.c +++ b/gdb/features/s390-te-linux64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390_te_linux64; +const struct target_desc *tdesc_s390_te_linux64; static void initialize_tdesc_s390_te_linux64 (void) { diff --git a/gdb/features/s390-tevx-linux64.c b/gdb/features/s390-tevx-linux64.c index cbc2077..8f8aec6 100644 --- a/gdb/features/s390-tevx-linux64.c +++ b/gdb/features/s390-tevx-linux64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390_tevx_linux64; +const struct target_desc *tdesc_s390_tevx_linux64; static void initialize_tdesc_s390_tevx_linux64 (void) { diff --git a/gdb/features/s390-vx-linux64.c b/gdb/features/s390-vx-linux64.c index 779332c..0bcc14d 100644 --- a/gdb/features/s390-vx-linux64.c +++ b/gdb/features/s390-vx-linux64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390_vx_linux64; +const struct target_desc *tdesc_s390_vx_linux64; static void initialize_tdesc_s390_vx_linux64 (void) { diff --git a/gdb/features/s390x-gs-linux64.c b/gdb/features/s390x-gs-linux64.c index a779daf..074c38d 100644 --- a/gdb/features/s390x-gs-linux64.c +++ b/gdb/features/s390x-gs-linux64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390x_gs_linux64; +const struct target_desc *tdesc_s390x_gs_linux64; static void initialize_tdesc_s390x_gs_linux64 (void) { diff --git a/gdb/features/s390x-linux64.c b/gdb/features/s390x-linux64.c index f8097e9..af5ba23 100644 --- a/gdb/features/s390x-linux64.c +++ b/gdb/features/s390x-linux64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390x_linux64; +const struct target_desc *tdesc_s390x_linux64; static void initialize_tdesc_s390x_linux64 (void) { diff --git a/gdb/features/s390x-linux64v1.c b/gdb/features/s390x-linux64v1.c index c79ee40..a33bdc1 100644 --- a/gdb/features/s390x-linux64v1.c +++ b/gdb/features/s390x-linux64v1.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390x_linux64v1; +const struct target_desc *tdesc_s390x_linux64v1; static void initialize_tdesc_s390x_linux64v1 (void) { diff --git a/gdb/features/s390x-linux64v2.c b/gdb/features/s390x-linux64v2.c index 9500917..8b906a4 100644 --- a/gdb/features/s390x-linux64v2.c +++ b/gdb/features/s390x-linux64v2.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390x_linux64v2; +const struct target_desc *tdesc_s390x_linux64v2; static void initialize_tdesc_s390x_linux64v2 (void) { diff --git a/gdb/features/s390x-te-linux64.c b/gdb/features/s390x-te-linux64.c index 64a0fe5..de8bf61 100644 --- a/gdb/features/s390x-te-linux64.c +++ b/gdb/features/s390x-te-linux64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390x_te_linux64; +const struct target_desc *tdesc_s390x_te_linux64; static void initialize_tdesc_s390x_te_linux64 (void) { diff --git a/gdb/features/s390x-tevx-linux64.c b/gdb/features/s390x-tevx-linux64.c index ec68e70..8bd5cc6 100644 --- a/gdb/features/s390x-tevx-linux64.c +++ b/gdb/features/s390x-tevx-linux64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390x_tevx_linux64; +const struct target_desc *tdesc_s390x_tevx_linux64; static void initialize_tdesc_s390x_tevx_linux64 (void) { diff --git a/gdb/features/s390x-vx-linux64.c b/gdb/features/s390x-vx-linux64.c index 4362e53..f450c45 100644 --- a/gdb/features/s390x-vx-linux64.c +++ b/gdb/features/s390x-vx-linux64.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_s390x_vx_linux64; +const struct target_desc *tdesc_s390x_vx_linux64; static void initialize_tdesc_s390x_vx_linux64 (void) { diff --git a/gdb/features/sparc/sparc32-solaris.c b/gdb/features/sparc/sparc32-solaris.c index c2f1606..3353d4f 100644 --- a/gdb/features/sparc/sparc32-solaris.c +++ b/gdb/features/sparc/sparc32-solaris.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_sparc32_solaris; +const struct target_desc *tdesc_sparc32_solaris; static void initialize_tdesc_sparc32_solaris (void) { diff --git a/gdb/features/sparc/sparc64-solaris.c b/gdb/features/sparc/sparc64-solaris.c index bb8f685..1150c88 100644 --- a/gdb/features/sparc/sparc64-solaris.c +++ b/gdb/features/sparc/sparc64-solaris.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_sparc64_solaris; +const struct target_desc *tdesc_sparc64_solaris; static void initialize_tdesc_sparc64_solaris (void) { diff --git a/gdb/features/z80.c b/gdb/features/z80.c index 944b563..f8e2a19 100644 --- a/gdb/features/z80.c +++ b/gdb/features/z80.c @@ -5,7 +5,7 @@ #include "osabi.h" #include "target-descriptions.h" -struct target_desc *tdesc_z80; +const struct target_desc *tdesc_z80; static void initialize_tdesc_z80 (void) { diff --git a/gdb/mips-linux-tdep.h b/gdb/mips-linux-tdep.h index 4b9940c..1b79302 100644 --- a/gdb/mips-linux-tdep.h +++ b/gdb/mips-linux-tdep.h @@ -108,9 +108,9 @@ enum { int mips_linux_restart_reg_p (struct gdbarch *gdbarch); /* Target descriptions. */ -extern struct target_desc *tdesc_mips_linux; -extern struct target_desc *tdesc_mips64_linux; -extern struct target_desc *tdesc_mips_dsp_linux; -extern struct target_desc *tdesc_mips64_dsp_linux; +extern const struct target_desc *tdesc_mips_linux; +extern const struct target_desc *tdesc_mips64_linux; +extern const struct target_desc *tdesc_mips_dsp_linux; +extern const struct target_desc *tdesc_mips64_dsp_linux; #endif /* MIPS_LINUX_TDEP_H */ diff --git a/gdb/nios2-tdep.h b/gdb/nios2-tdep.h index cbf2599..78d5d8e 100644 --- a/gdb/nios2-tdep.h +++ b/gdb/nios2-tdep.h @@ -84,7 +84,7 @@ struct nios2_gdbarch_tdep : gdbarch_tdep_base int jb_pc = 0; }; -extern struct target_desc *tdesc_nios2_linux; -extern struct target_desc *tdesc_nios2; +extern const struct target_desc *tdesc_nios2_linux; +extern const struct target_desc *tdesc_nios2; #endif /* NIOS2_TDEP_H */ diff --git a/gdb/rs6000-tdep.c b/gdb/rs6000-tdep.c index cccc887..0620bf3 100644 --- a/gdb/rs6000-tdep.c +++ b/gdb/rs6000-tdep.c @@ -3466,7 +3466,7 @@ struct ppc_variant unsigned long mach; /* Target description for this variant. */ - struct target_desc **tdesc; + const struct target_desc **tdesc; }; static struct ppc_variant variants[] = diff --git a/gdb/s390-linux-tdep.h b/gdb/s390-linux-tdep.h index acc57ab..a73c20f 100644 --- a/gdb/s390-linux-tdep.h +++ b/gdb/s390-linux-tdep.h @@ -48,20 +48,20 @@ extern const struct regset s390_gs_regset; extern const struct regset s390_gsbc_regset; /* GNU/Linux target descriptions. */ -extern struct target_desc *tdesc_s390_linux32v1; -extern struct target_desc *tdesc_s390_linux32v2; -extern struct target_desc *tdesc_s390_linux64; -extern struct target_desc *tdesc_s390_linux64v1; -extern struct target_desc *tdesc_s390_linux64v2; -extern struct target_desc *tdesc_s390_te_linux64; -extern struct target_desc *tdesc_s390_vx_linux64; -extern struct target_desc *tdesc_s390_tevx_linux64; -extern struct target_desc *tdesc_s390_gs_linux64; -extern struct target_desc *tdesc_s390x_linux64v1; -extern struct target_desc *tdesc_s390x_linux64v2; -extern struct target_desc *tdesc_s390x_te_linux64; -extern struct target_desc *tdesc_s390x_vx_linux64; -extern struct target_desc *tdesc_s390x_tevx_linux64; -extern struct target_desc *tdesc_s390x_gs_linux64; +extern const struct target_desc *tdesc_s390_linux32v1; +extern const struct target_desc *tdesc_s390_linux32v2; +extern const struct target_desc *tdesc_s390_linux64; +extern const struct target_desc *tdesc_s390_linux64v1; +extern const struct target_desc *tdesc_s390_linux64v2; +extern const struct target_desc *tdesc_s390_te_linux64; +extern const struct target_desc *tdesc_s390_vx_linux64; +extern const struct target_desc *tdesc_s390_tevx_linux64; +extern const struct target_desc *tdesc_s390_gs_linux64; +extern const struct target_desc *tdesc_s390x_linux64v1; +extern const struct target_desc *tdesc_s390x_linux64v2; +extern const struct target_desc *tdesc_s390x_te_linux64; +extern const struct target_desc *tdesc_s390x_vx_linux64; +extern const struct target_desc *tdesc_s390x_tevx_linux64; +extern const struct target_desc *tdesc_s390x_gs_linux64; #endif /* S390_LINUX_TDEP_H */ diff --git a/gdb/s390-tdep.h b/gdb/s390-tdep.h index f51423c..bfee9a8 100644 --- a/gdb/s390-tdep.h +++ b/gdb/s390-tdep.h @@ -317,7 +317,7 @@ extern struct value *s390_trad_frame_prev_register (struct frame_info *this_frame, struct trad_frame_saved_reg saved_regs[], int regnum); -extern struct target_desc *tdesc_s390_linux32; -extern struct target_desc *tdesc_s390x_linux64; +extern const struct target_desc *tdesc_s390_linux32; +extern const struct target_desc *tdesc_s390x_linux64; #endif /* S390_TDEP_H */ diff --git a/gdb/target-descriptions.c b/gdb/target-descriptions.c index 044b171..2bd0b16 100644 --- a/gdb/target-descriptions.c +++ b/gdb/target-descriptions.c @@ -1370,7 +1370,7 @@ public: gdb_printf ("#include \"target-descriptions.h\"\n"); gdb_printf ("\n"); - gdb_printf ("struct target_desc *tdesc_%s;\n", m_function); + gdb_printf ("const struct target_desc *tdesc_%s;\n", m_function); gdb_printf ("static void\n"); gdb_printf ("initialize_tdesc_%s (void)\n", m_function); gdb_printf ("{\n"); -- cgit v1.1