From 100fbd17fb668b40a82c4c51b4e4c552f289730c Mon Sep 17 00:00:00 2001 From: PCPA Date: Wed, 25 Aug 2010 06:47:42 -0300 Subject: [PATCH] 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. --- lightning/i386/fp-64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning/i386/fp-64.h b/lightning/i386/fp-64.h index a7b8a7b9d..77312e792 100644 --- a/lightning/i386/fp-64.h +++ b/lightning/i386/fp-64.h @@ -35,7 +35,7 @@ #include -#define JIT_FPR_NUM 8 +#define JIT_FPR_NUM 7 #define JIT_FPRET _XMM0 #define JIT_FPR(i) (_XMM8 + (i)) #define JIT_FPTMP _XMM15