mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-03 23:36:21 +08:00
ffi_mips.h: Define FFI_MIPS_N32 for N32/N64 ABIs, FFI_MIPS_O32 for O32 ABI.
* include/ffi_mips.h: Define FFI_MIPS_N32 for N32/N64 ABIs, FFI_MIPS_O32 for O32 ABI. From-SVN: r72161
This commit is contained in:
parent
ffcc1cfc0c
commit
d54f735472
@ -1,3 +1,8 @@
|
||||
2003-10-06 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||
|
||||
* include/ffi_mips.h: Define FFI_MIPS_N32 for N32/N64 ABIs,
|
||||
FFI_MIPS_O32 for O32 ABI.
|
||||
|
||||
2003-10-01 Andreas Tobler <a.tobler@schweiz.ch>
|
||||
|
||||
* testsuite/lib/libffi-dg.exp: Set LD_LIBRARY_PATH_64 for
|
||||
|
@ -30,17 +30,13 @@
|
||||
#if !defined(_MIPS_SIM)
|
||||
-- something is very wrong --
|
||||
#else
|
||||
# if _MIPS_SIM==_ABIN32 && defined(_ABIN32)
|
||||
# if (_MIPS_SIM==_ABIN32 && defined(_ABIN32)) || (_MIPS_SIM==_ABI64 && defined(_ABI64))
|
||||
# define FFI_MIPS_N32
|
||||
# else
|
||||
# if defined(__GNUC__)
|
||||
# if _MIPS_SIM==_ABIO32 && defined(_ABIO32)
|
||||
# define FFI_MIPS_O32
|
||||
# else
|
||||
# if _MIPS_SIM==_ABIO32
|
||||
# define FFI_MIPS_O32
|
||||
# else
|
||||
-- this is an unsupported platform --
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user