diff options
Diffstat (limited to 'libguile/vm-i-system.c')
-rw-r--r-- | libguile/vm-i-system.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/vm-i-system.c b/libguile/vm-i-system.c index d60c20c3b..8383a12af 100644 --- a/libguile/vm-i-system.c +++ b/libguile/vm-i-system.c @@ -757,7 +757,7 @@ VM_DEFINE_INSTRUCTION (53, call, "call", 1, -1, 1) SYNC_REGISTER (); while (n--) args = scm_cons (*walk--, args); - *walk = scm_mcache_compute_cmethod (SCM_ENTITY_PROCEDURE (x), args); + *walk = scm_mcache_compute_cmethod (SCM_GENERIC_METHOD_CACHE (x), args); goto vm_call; } /* @@ -841,7 +841,7 @@ VM_DEFINE_INSTRUCTION (54, goto_args, "goto/args", 1, -1, 1) SYNC_REGISTER (); while (n--) args = scm_cons (*walk--, args); - *walk = scm_mcache_compute_cmethod (SCM_ENTITY_PROCEDURE (x), args); + *walk = scm_mcache_compute_cmethod (SCM_GENERIC_METHOD_CACHE (x), args); goto vm_goto_args; } @@ -933,7 +933,7 @@ VM_DEFINE_INSTRUCTION (57, mv_call, "mv-call", 4, -1, 1) SYNC_REGISTER (); while (n--) args = scm_cons (*walk--, args); - *walk = scm_mcache_compute_cmethod (SCM_ENTITY_PROCEDURE (x), args); + *walk = scm_mcache_compute_cmethod (SCM_GENERIC_METHOD_CACHE (x), args); goto vm_mv_call; } /* |