mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-26 13:10:22 +02:00
MIPS: Correct abi detection.
* include/lightning/jit_mips.h: Add proper mips abi detection.
This commit is contained in:
parent
f42a251ff1
commit
565c3a064e
2 changed files with 9 additions and 2 deletions
|
@ -23,8 +23,11 @@
|
|||
#define JIT_HASH_CONSTS 1
|
||||
#define JIT_NUM_OPERANDS 3
|
||||
|
||||
#if defined(_ABIN32)
|
||||
# define NEW_ABI 1
|
||||
#if _MIPS_SIM == _ABIN32
|
||||
# define NEW_ABI 1
|
||||
#elif _MIPS_SIM != _ABIO32
|
||||
/* FIXME port to _ABI64 */
|
||||
# error "Unsupported ABI"
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue