Commit 7ce2fcb9 by Kaveh R. Ghazi Committed by Kaveh Ghazi

* mips.h (MULTILIB_ISA_DEFAULT): Don't use #elif.

From-SVN: r39441
parent b6c02328
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> 2001-02-04 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.md (movdf load split): Pass register number to * config/sh/sh.md (movdf load split): Pass register number to
......
...@@ -502,17 +502,23 @@ extern void sbss_section PARAMS ((void)); ...@@ -502,17 +502,23 @@ extern void sbss_section PARAMS ((void));
#endif #endif
#ifndef MULTILIB_ISA_DEFAULT #ifndef MULTILIB_ISA_DEFAULT
#if MIPS_ISA_DEFAULT == 1 # if MIPS_ISA_DEFAULT == 1
#define MULTILIB_ISA_DEFAULT "mips1" # define MULTILIB_ISA_DEFAULT "mips1"
#elif MIPS_ISA_DEFAULT == 2 # else
#define MULTILIB_ISA_DEFAULT "mips2" # if MIPS_ISA_DEFAULT == 2
#elif MIPS_ISA_DEFAULT == 3 # define MULTILIB_ISA_DEFAULT "mips2"
#define MULTILIB_ISA_DEFAULT "mips3" # else
#elif MIPS_ISA_DEFAULT == 4 # if MIPS_ISA_DEFAULT == 3
#define MULTILIB_ISA_DEFAULT "mips4" # define MULTILIB_ISA_DEFAULT "mips3"
#else # else
#define MULTILIB_ISA_DEFAULT "mips1" # if MIPS_ISA_DEFAULT == 4
#endif # define MULTILIB_ISA_DEFAULT "mips4"
# else
# define MULTILIB_ISA_DEFAULT "mips1"
# endif
# endif
# endif
# endif
#endif #endif
#ifndef MULTILIB_DEFAULTS #ifndef MULTILIB_DEFAULTS
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment