1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-08 22:50:27 +02:00

Change JIT_FPR_NUM to 7 to prevent clobber of JIT_FPR(7)

Lightning provides at least 6 float registers, so, in this commit,
reduce from 8 to 7 so that code respecting JIT_FPR_NUM should be
safe again't use of JIT_FPTMP.
This commit is contained in:
PCPA 2010-08-25 06:47:42 -03:00
parent ec36c13183
commit 100fbd17fb

View file

@ -35,7 +35,7 @@
#include <float.h>
#define JIT_FPR_NUM 8
#define JIT_FPR_NUM 7
#define JIT_FPRET _XMM0
#define JIT_FPR(i) (_XMM8 + (i))
#define JIT_FPTMP _XMM15