Replace occurrences of #elif with #if...#endif.

From-SVN: r46489
This commit is contained in:
Nick Clifton 2001-10-25 13:20:59 +00:00 committed by Nick Clifton
parent 1ec586aeed
commit cdd90341d6
2 changed files with 19 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2001-10-25 Nick Clifton <nickc@cambridge.redhat.com>
* config/mips/isa3264.h (SUBTARGET_CPP_SIZE_SPEC): Replace
occurrences of #elif with #if...#endif.
2001-10-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* cris.h (EH_RETURN_DATA_REGNO): Fix unsigned>=0 warning.

View File

@ -51,7 +51,9 @@ Boston, MA 02111-1307, USA. */
%{!mlong64:-D__SIZE_TYPE__=unsigned\\ int -D__PTRDIFF_TYPE__=int}} \
%{mabi=32:-D__SIZE_TYPE__=unsigned\\ int -D__PTRDIFF_TYPE__=int} \
"
#elif MIPS_ABI_DEFAULT == ABI_O64
#endif
#if MIPS_ABI_DEFAULT == ABI_O64
#undef SUBTARGET_CPP_SIZE_SPEC
#define SUBTARGET_CPP_SIZE_SPEC "\
%{mabi=eabi:\
@ -62,8 +64,9 @@ Boston, MA 02111-1307, USA. */
%{!mlong64:-D__SIZE_TYPE__=unsigned\\ int -D__PTRDIFF_TYPE__=int}} \
%{mabi=32:-D__SIZE_TYPE__=unsigned\\ int -D__PTRDIFF_TYPE__=int} \
"
#endif
#elif MIPS_ABI_DEFAULT == ABI_32
#if MIPS_ABI_DEFAULT == ABI_32
#if MIPS_ISA_DEFAULT == 3 || MIPS_ISA_DEFAULT == 4 || MIPS_ISA_DEFAULT == 5 || MIPS_ISA_DEFAULT == 64
#undef SUBTARGET_CPP_SIZE_SPEC
#define SUBTARGET_CPP_SIZE_SPEC "\
@ -93,8 +96,9 @@ Boston, MA 02111-1307, USA. */
-D__SIZE_TYPE__=unsigned\\ int -D__PTRDIFF_TYPE__=int}}}}} \
"
#endif /* ISA */
#endif
#elif MIPS_ABI_DEFAULT == ABI_MEABI
#if MIPS_ABI_DEFAULT == ABI_MEABI
/* For MEABI, don't link with crt0 files, let the linker start files specify
the appropriate crt0 file. */
#undef STARTFILE_SPEC
@ -142,7 +146,5 @@ Boston, MA 02111-1307, USA. */
%{!mlong64:-D__SIZE_TYPE__=unsigned\\ int -D__PTRDIFF_TYPE__=int }} \
"
#endif /* ISA */
#endif
#endif /* ABI */
/* eof */