1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-05 03:30:24 +02:00

Fix GPR temporary selection

This commit is contained in:
Andy Wingo 2019-05-15 16:26:18 +02:00
parent 09e71475f4
commit 7e0b0be1ba

View file

@ -348,7 +348,7 @@ get_temp_gpr(jit_state_t *_jit)
static jit_fpr_t
get_temp_fpr(jit_state_t *_jit)
{
switch(_jit->temp_gpr_saved++)
switch(_jit->temp_fpr_saved++)
{
case 0:
return JIT_FTMP;