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:
parent
f42a251ff1
commit
565c3a064e
2 changed files with 9 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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