From: Klaus Treichel Date: Mon, 24 Mar 2008 11:43:59 +0000 (+0000) Subject: Reset the epilog fixup list prior to restarting compilation of a function. X-Git-Tag: before.move.to.git~99 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=e376850479c73ed066c74d26c8b580d683bca072;p=francis%2Flibjit.git Reset the epilog fixup list prior to restarting compilation of a function. --- diff --git a/ChangeLog b/ChangeLog index d227e59..80c766f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-03-24 Klaus Treichel + + * jit/jit-function.c (cleanup_on_restart): Reset the epilog_fixup. + 2008-03-04 Klaus Treichel * jit/Makefile.am: Add jit-rules-x86-64.inc to CLEANFILES to fix diff --git a/jit/jit-function.c b/jit/jit-function.c index a53745e..c34ada1 100644 --- a/jit/jit-function.c +++ b/jit/jit-function.c @@ -690,6 +690,9 @@ cleanup_on_restart(jit_gencode_t gen, jit_function_t func) { gen->touched = gen->permanent; } + + /* Reset the epilog fixup list */ + gen->epilog_fixup = 0; } /*