emacs-diffs
[Top][All Lists]
Advanced

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

master dcf30f14f9: * Have `null' and `not' explicit in LIMPLE so we inli


From: Andrea Corallo
Subject: master dcf30f14f9: * Have `null' and `not' explicit in LIMPLE so we inline them
Date: Fri, 4 Feb 2022 09:57:01 -0500 (EST)

branch: master
commit dcf30f14f90d13ffe9d1ccca153b17287334060e
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>

    * Have `null' and `not' explicit in LIMPLE so we inline them
    
    * lisp/emacs-lisp/comp.el (comp-limplify-lap-inst): Generate explicit
    `eq' call in LIMPLE for LAP opcode 'not'.
---
 lisp/emacs-lisp/comp.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 9c2fc93821..122638077c 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -1832,7 +1832,9 @@ and the annotation emission."
       (byte-listp auto)
       (byte-eq auto)
       (byte-memq auto)
-      (byte-not null)
+      (byte-not
+       (comp-emit-set-call (comp-call 'eq (comp-slot-n (comp-sp))
+                                      (make-comp-mvar :constant nil))))
       (byte-car auto)
       (byte-cdr auto)
       (byte-cons auto)



reply via email to

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