mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 22:10:21 +02:00
* eval.c (SCM_CEVAL): Optimization: Reverse order of
scm_stack_checking_enabled_p and SCM_STACK_OVERFLOW_P => speed gain 4-6% for eval1 benchmark on one machine. (Thanks to Brad Knotwell.)
This commit is contained in:
parent
da43d82227
commit
6f13f9cb90
1 changed files with 2 additions and 2 deletions
|
@ -1832,8 +1832,8 @@ SCM_CEVAL (SCM x, SCM env)
|
|||
scm_last_debug_frame = &debug;
|
||||
#endif
|
||||
#ifdef EVAL_STACK_CHECKING
|
||||
if (SCM_STACK_OVERFLOW_P ((SCM_STACKITEM *) &proc)
|
||||
&& scm_stack_checking_enabled_p)
|
||||
if (scm_stack_checking_enabled_p
|
||||
&& SCM_STACK_OVERFLOW_P ((SCM_STACKITEM *) &proc))
|
||||
{
|
||||
#ifdef DEVAL
|
||||
debug.info->e.exp = x;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue