From: Rhys Weatherley Date: Sat, 15 May 2004 10:33:02 +0000 (+0000) Subject: Fix a compile bug. X-Git-Tag: r.0.0.4~102 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=b166f04f16fcc0df7ce80f17612114d865e2dfca;p=francis%2Flibjit.git Fix a compile bug. --- diff --git a/ChangeLog b/ChangeLog index 23423ca..80886d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,8 @@ * tools/gen-apply.c: fix a macro generation bug for Win32 systems. + * jit/jit-reg-alloc.c: fix a compile bug. + 2004-05-14 Rhys Weatherley * include/jit/Makefile.am, include/jit/jit-objmodel-private.h, diff --git a/jit/jit-reg-alloc.c b/jit/jit-reg-alloc.c index 4a5e173..d3af23a 100644 --- a/jit/jit-reg-alloc.c +++ b/jit/jit-reg-alloc.c @@ -290,7 +290,7 @@ static void spill_register(jit_gencode_t gen, int reg) { if((_jit_reg_info[reg].flags & JIT_REG_IN_STACK) == 0) { - return spill_all_between(gen, reg, reg); + spill_all_between(gen, reg, reg); } else {