wingo pushed a commit to branch master
in repository guile.

commit 7aff0fff22c6d70b5ad93b387840f555c160464f
Author: Andy Wingo <wi...@pobox.com>
Date:   Mon Oct 30 10:24:45 2017 +0100

    Fix argument type of arguments<=? instruction
    
    * libguile/vm-engine.c (arguments<=?): Take an immediate argument.
---
 libguile/vm-engine.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/vm-engine.c b/libguile/vm-engine.c
index c6ffbef..e492688 100644
--- a/libguile/vm-engine.c
+++ b/libguile/vm-engine.c
@@ -4164,7 +4164,7 @@ VM_NAME (scm_i_thread *thread, struct scm_vm *vp,
       NEXT (1);
     }
 
-  VM_DEFINE_OP (201, check_arguments, "arguments<=?", OP1 (X8_S24))
+  VM_DEFINE_OP (201, check_arguments, "arguments<=?", OP1 (X8_C24))
     {
       scm_t_uint8 compare_result;
       scm_t_uint32 expected;

Reply via email to