Browse Source

fix return code of interpreter version of jit_function_apply_vararg

cache-refactoring
Aleksey Demakov 17 years ago
parent
commit
17b69141fd
  1. 5
      ChangeLog
  2. 2
      jit/jit-interp.c

5
ChangeLog

@ -1,3 +1,8 @@
2008-03-25 Aleksey Demakov <ademakov@gmail.com>
* jit/jit-interp.c (jit_function_apply_vararg): fix return code if
exception is thrown.
2008-03-24 Klaus Treichel <ktreichel@web.de>
* jit/jit-function.c (cleanup_on_restart): Reset the epilog_fixup.

2
jit/jit-interp.c

@ -4989,7 +4989,7 @@ int jit_function_apply_vararg
if(setjmp(jbuf.buf))
{
_jit_unwind_pop_setjmp();
return 1;
return 0;
}
/* Initialize the backtrace information */

Loading…
Cancel
Save