* mips.h (MULTILIB_ISA_DEFAULT): Don't use #elif.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sun, 4 Feb 2001 12:11:51 +0000 (12:11 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sun, 4 Feb 2001 12:11:51 +0000 (12:11 +0000)
From-SVN: r39441

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

index 4531efe37973ee6d0c791ff9d2ddc6756c24b8cd..19b09ee1b046d8832641c2df07d60479aa3fb6aa 100644 (file)
@@ -1,3 +1,7 @@
+2001-02-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * mips.h (MULTILIB_ISA_DEFAULT): Don't use #elif.
+
 2001-02-04  Alexandre Oliva  <aoliva@redhat.com>
 
        * config/sh/sh.md (movdf load split): Pass register number to
index 19d4b8f6ecae357272f6eb5513f6d374a5b3dc8d..1510ecc445d1f2de474ae63b540140045b784728 100644 (file)
@@ -502,17 +502,23 @@ extern void               sbss_section PARAMS ((void));
 #endif
 
 #ifndef MULTILIB_ISA_DEFAULT
-#if MIPS_ISA_DEFAULT == 1
-#define MULTILIB_ISA_DEFAULT "mips1"
-#elif MIPS_ISA_DEFAULT == 2
-#define MULTILIB_ISA_DEFAULT "mips2"
-#elif MIPS_ISA_DEFAULT == 3
-#define MULTILIB_ISA_DEFAULT "mips3"
-#elif MIPS_ISA_DEFAULT == 4
-#define MULTILIB_ISA_DEFAULT "mips4"
-#else
-#define MULTILIB_ISA_DEFAULT "mips1"
-#endif
+#  if MIPS_ISA_DEFAULT == 1
+#    define MULTILIB_ISA_DEFAULT "mips1"
+#  else
+#    if MIPS_ISA_DEFAULT == 2
+#      define MULTILIB_ISA_DEFAULT "mips2"
+#    else
+#      if MIPS_ISA_DEFAULT == 3
+#        define MULTILIB_ISA_DEFAULT "mips3"
+#      else
+#        if MIPS_ISA_DEFAULT == 4
+#          define MULTILIB_ISA_DEFAULT "mips4"
+#        else
+#          define MULTILIB_ISA_DEFAULT "mips1"
+#        endif
+#      endif
+#    endif
+#  endif
 #endif
 
 #ifndef MULTILIB_DEFAULTS