From 673c7b8610ee2f8f1653e5e2803edfc80b408731 Mon Sep 17 00:00:00 2001 From: Aleksey Demakov Date: Fri, 16 Jun 2006 18:13:32 +0000 Subject: [PATCH] missed from the previous commit --- jit/jit-reg-alloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jit/jit-reg-alloc.c b/jit/jit-reg-alloc.c index 67e480c..b91d399 100644 --- a/jit/jit-reg-alloc.c +++ b/jit/jit-reg-alloc.c @@ -2735,7 +2735,7 @@ use_cheapest_register(jit_gencode_t gen, _jit_regs_t *regs, int index, jit_regus { continue; } -#if !ALLOW_LONGS_USE_GLOBAL +#if !ALLOW_CLOBBER_GLOBAL if(other_reg >= 0 && jit_reg_is_used(gen->permanent, other_reg)) { continue; @@ -2750,7 +2750,7 @@ use_cheapest_register(jit_gencode_t gen, _jit_regs_t *regs, int index, jit_regus { cost = compute_spill_cost(gen, regs, reg, other_reg); } -#if ALLOW_LONGS_USE_GLOBAL +#if ALLOW_CLOBBER_GLOBAL if(other_reg >= 0 && jit_reg_is_used(gen->permanent, other_reg)) { cost += COST_CLOBBER_GLOBAL;