guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 05/11: Emit char? instead of br-if-char


From: Andy Wingo
Subject: [Guile-commits] 05/11: Emit char? instead of br-if-char
Date: Sun, 29 Oct 2017 05:09:40 -0400 (EDT)

wingo pushed a commit to branch master
in repository guile.

commit e3c062dce6385b90d01436b9831b5d34dde2e227
Author: Andy Wingo <address@hidden>
Date:   Thu Oct 26 21:30:06 2017 +0200

    Emit char? instead of br-if-char
    
    * module/language/cps/compile-bytecode.scm (compile-function): Use new
      instructions for char? test.
---
 module/language/cps/compile-bytecode.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module/language/cps/compile-bytecode.scm 
b/module/language/cps/compile-bytecode.scm
index 2c6fd77..966bb7c 100644
--- a/module/language/cps/compile-bytecode.scm
+++ b/module/language/cps/compile-bytecode.scm
@@ -437,7 +437,7 @@
         (($ $primcall 'nil? (a)) (unary/old emit-br-if-nil a))
         (($ $primcall 'pair? (a)) (unary emit-pair? a))
         (($ $primcall 'struct? (a)) (unary emit-struct? a))
-        (($ $primcall 'char? (a)) (unary/old emit-br-if-char a))
+        (($ $primcall 'char? (a)) (unary emit-char? a))
         (($ $primcall 'symbol? (a)) (unary emit-symbol? a))
         (($ $primcall 'variable? (a)) (unary emit-variable? a))
         (($ $primcall 'vector? (a)) (unary emit-vector? a))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]