mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-17 02:58:56 +08:00
* mips.h (MULTILIB_ISA_DEFAULT): Don't use #elif.
From-SVN: r39441
This commit is contained in:
parent
b6c0232813
commit
7ce2fcb939
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user