`no-native-compile'.
This is normally set in local file variables at the end of the elisp file:
-\;; Local Variables:\n;; no-native-compile: t\n;; End: ")
+\;; Local Variables:\n;; no-native-compile: t\n;; End:")
;;;###autoload(put 'no-native-compile 'safe-local-variable 'booleanp)
(defvar comp-log-time-report nil
for cstr = (comp-type-spec-to-cstr type-spec)
do (puthash f cstr h)
finally return h)
- "Hash table function -> `comp-constraint'")
+ "Hash table function -> `comp-constraint'.")
(defconst comp-known-predicates
'((arrayp . array)
for cstr = (comp-type-spec-to-cstr type-spec)
do (puthash pred cstr h)
finally return h)
- "Hash table function -> `comp-constraint'")
+ "Hash table function -> `comp-constraint'.")
(defun comp-known-predicate-p (predicate)
"Return t if PREDICATE is known."
(- (comp-vec-end vec) (comp-vec-beg vec)))
(defsubst comp-vec--verify-idx (vec idx)
- "Check whether idx is in bounds for VEC."
+ "Check whether IDX is in bounds for VEC."
(cl-assert (and (< idx (comp-vec-end vec))
(>= idx (comp-vec-beg vec)))))
(when (memq function '(eq eql equal)) t))
(defun comp-arithm-cmp-fun-p (function)
- "Predicate for arithmetic comparision functions."
+ "Predicate for arithmetic comparison functions."
(when (memq function '(= > < >= <=)) t))
(defun comp-set-op-p (op)
(gethash func (comp-ctxt-byte-func-to-func-h comp-ctxt))))
(defun comp-call-optim-form-call (callee args)
- ""
(cl-flet ((fill-args (args total)
;; Fill missing args to reach TOTAL
(append args (cl-loop repeat (- total (length args))
;;; Final pass specific code.
(defun comp-args-to-lambda-list (args)
- "Return a lambda list for args."
+ "Return a lambda list for ARGS."
(cl-loop
with res
repeat (comp-args-base-min args)