]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Warning fixes:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Fri, 23 Oct 1998 13:23:39 +0000 (13:23 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Fri, 23 Oct 1998 13:23:39 +0000 (13:23 +0000)
        * mips.h (EXTRA_SPECS): Add missing initializers.

From-SVN: r23255

gcc/ChangeLog
gcc/config/mips/mips.h

index a23998aa5c06058ca1a427290a33626e14934a3d..554dab1c3fb20fb5b99027ceb7cb2aa891910012 100644 (file)
@@ -1,3 +1,7 @@
+Fri Oct 23 16:19:24 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * mips.h (EXTRA_SPECS): Add missing initializers.
+
 Fri Oct 23 16:08:39 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * sparc.h (EXTRA_SPECS): Add missing initializers.
index c562307310f19fabf3ab44716927062f84369859..129624f7b1db2b1a3273d85aa31b9650312d66c8 100644 (file)
@@ -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