From e1ba7da73f740ffe54029e33b71f649cb299959d Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Fri, 23 Oct 1998 13:23:39 +0000 Subject: [PATCH] Warning fixes: * mips.h (EXTRA_SPECS): Add missing initializers. From-SVN: r23255 --- gcc/ChangeLog | 4 ++++ gcc/config/mips/mips.h | 24 ++++++++++++------------ 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a23998aa5c0..554dab1c3fb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Fri Oct 23 16:19:24 1998 Kaveh R. Ghazi + + * mips.h (EXTRA_SPECS): Add missing initializers. + Fri Oct 23 16:08:39 1998 Kaveh R. Ghazi * sparc.h (EXTRA_SPECS): Add missing initializers. diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index c562307310f..129624f7b1d 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -950,18 +950,18 @@ while (0) Do not define this macro if it does not need to do anything. */ #define EXTRA_SPECS \ - { "subtarget_cc1_spec", SUBTARGET_CC1_SPEC }, \ - { "subtarget_cpp_spec", SUBTARGET_CPP_SPEC }, \ - { "subtarget_cpp_size_spec", SUBTARGET_CPP_SIZE_SPEC }, \ - { "long_max_spec", LONG_MAX_SPEC }, \ - { "mips_as_asm_spec", MIPS_AS_ASM_SPEC }, \ - { "gas_asm_spec", GAS_ASM_SPEC }, \ - { "target_asm_spec", TARGET_ASM_SPEC }, \ - { "subtarget_mips_as_asm_spec", SUBTARGET_MIPS_AS_ASM_SPEC }, \ - { "subtarget_asm_optimizing_spec", SUBTARGET_ASM_OPTIMIZING_SPEC }, \ - { "subtarget_asm_debugging_spec", SUBTARGET_ASM_DEBUGGING_SPEC }, \ - { "subtarget_asm_spec", SUBTARGET_ASM_SPEC }, \ - { "linker_endian_spec", LINKER_ENDIAN_SPEC }, \ + { "subtarget_cc1_spec", SUBTARGET_CC1_SPEC, 0, 0, 0, 0 }, \ + { "subtarget_cpp_spec", SUBTARGET_CPP_SPEC, 0, 0, 0, 0 }, \ + { "subtarget_cpp_size_spec", SUBTARGET_CPP_SIZE_SPEC, 0, 0, 0, 0 }, \ + { "long_max_spec", LONG_MAX_SPEC, 0, 0, 0, 0 }, \ + { "mips_as_asm_spec", MIPS_AS_ASM_SPEC, 0, 0, 0, 0 }, \ + { "gas_asm_spec", GAS_ASM_SPEC, 0, 0, 0, 0 }, \ + { "target_asm_spec", TARGET_ASM_SPEC, 0, 0, 0, 0 }, \ + { "subtarget_mips_as_asm_spec", SUBTARGET_MIPS_AS_ASM_SPEC, 0, 0, 0, 0 }, \ + { "subtarget_asm_optimizing_spec", SUBTARGET_ASM_OPTIMIZING_SPEC, 0, 0, 0, 0 }, \ + { "subtarget_asm_debugging_spec", SUBTARGET_ASM_DEBUGGING_SPEC, 0, 0, 0, 0 }, \ + { "subtarget_asm_spec", SUBTARGET_ASM_SPEC, 0, 0, 0, 0 }, \ + { "linker_endian_spec", LINKER_ENDIAN_SPEC, 0, 0, 0, 0 }, \ SUBTARGET_EXTRA_SPECS #ifndef SUBTARGET_EXTRA_SPECS -- 2.30.2