1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-04 11:10:27 +02:00

MIPS: Correct abi detection.

* include/lightning/jit_mips.h: Add proper mips abi detection.
This commit is contained in:
pcpa 2013-10-02 23:18:06 -03:00
parent f42a251ff1
commit 565c3a064e
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2013-10-02 Paulo Andrade <pcpa@gnu.org>
* include/lightning/jit_mips.h: Add proper mips abi detection.
2013-10-30 Paulo Andrade <pcpa@gnu.org>
* lib/jit_print.c: Do not crash if calling jit_print from

View file

@ -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
/*