]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix broken byte-compilation of unary comparisons
authorMattias Engdegård <mattiase@acm.org>
Wed, 26 Jul 2023 16:39:36 +0000 (18:39 +0200)
committerMattias Engdegård <mattiase@acm.org>
Wed, 26 Jul 2023 16:49:51 +0000 (18:49 +0200)
* lisp/emacs-lisp/byte-opt.el (byte-opt--nary-comparison):
Fix a typo causing miscompilation of code such as (OP X),
where OP is <, >, <=, >= or =.
* test/lisp/emacs-lisp/bytecomp-tests.el
(bytecomp-tests--test-cases): Add test case.

Reported by Richard Copley.

lisp/emacs-lisp/byte-opt.el
test/lisp/emacs-lisp/bytecomp-tests.el

index 0be6ae65aab449dca49c1043d09e7fefaa02bd71..3005d69ae88f2c5d8c945af0eb2fe11e28fda60f 100644 (file)
@@ -973,7 +973,7 @@ for speeding up processing.")
   (let ((nargs (length (cdr form))))
     (cond
      ((= nargs 1)
-      `(progn (cadr form) t))
+      `(progn ,(cadr form) t))
      ((>= nargs 3)
       ;; At least 3 arguments: transform to N-1 binary comparisons,
       ;; since those have their own byte-ops which are particularly
index b549ae1fe09ff6a62d76622878b1bf9b92ccf6fc..593fd117685188f55571e947ecd4230b2014e142 100644 (file)
@@ -780,6 +780,11 @@ inner loops respectively."
     ;; (+ 0 -0.0) etc
     (let ((x (bytecomp-test-identity -0.0)))
       (list x (+ x) (+ 0 x) (+ x 0) (+ 1 2 -3 x) (+ 0 x 0)))
+
+    ;; Unary comparisons: keep side-effect, return t
+    (let ((x 0))
+      (list (= (setq x 1))
+            x))
     )
   "List of expressions for cross-testing interpreted and compiled code.")