]> git.eshelyaron.com Git - emacs.git/commitdiff
* Rename comp-function-optimizable -> comp-function-optimizable-p
authorAndrea Corallo <akrl@sdf.org>
Sun, 7 Jun 2020 12:42:12 +0000 (14:42 +0200)
committerAndrea Corallo <akrl@sdf.org>
Sun, 7 Jun 2020 17:20:04 +0000 (19:20 +0200)
* lisp/emacs-lisp/comp.el (comp-function-optimizable): Rename into
'comp-function-optimizable-p'.
(comp-function-call-maybe-remove): Use the new name.

lisp/emacs-lisp/comp.el

index 520ec8cd44d152670ae5bb52421734ea7e1d1ba9..a6bf723f54c115144ca549527e56a48c7c54729b 100644 (file)
@@ -1870,7 +1870,7 @@ Here goes everything that can be done not iteratively (read once).
         (comp-mvar-type lval) (comp-mvar-type rval)))
 
 ;; Here should fall most of (defun byte-optimize-* equivalents.
-(defsubst comp-function-optimizable (f args)
+(defsubst comp-function-optimizable-p (f args)
   "Given function F called with ARGS return non nil when optimizable."
   (when (cl-every #'comp-mvar-const-vld args)
     (or (get f 'pure)
@@ -1900,7 +1900,7 @@ Here goes everything that can be done not iteratively (read once).
                                        comp-symbol-values-optimizable)))
         (rewrite-insn-as-setimm insn (symbol-value (comp-mvar-constant
                                                     (car args))))))
-     ((comp-function-optimizable f args)
+     ((comp-function-optimizable-p f args)
       (ignore-errors
         ;; No point to complain here because we should do basic block
         ;; pruning in order to be sure that this is not dead-code.  This