Function: make-comp-ssa--cmacro
make-comp-ssa--cmacro is a function defined in comp.el.gz.
Signature
(make-comp-ssa--cmacro CL-WHOLE &cl-quote &key FRAME)
Documentation
compiler-macro for inlining make-comp-ssa.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
;; Closure converted to defun by helpful.
(defun make-comp-ssa--cmacro
(cl-whole &rest --cl-rest--)
"compiler-macro for inlining `make-comp-ssa'.\n\n\\(fn CL-WHOLE &cl-quote &key FRAME)"
(let*
((frame
(car
(cdr
(or
(plist-member --cl-rest-- ':frame)
'(nil
(comp-new-frame
(comp-func-frame-size comp-func)
(comp-func-vframe-size comp-func)
t)))))))
(progn
(let
((--cl-keys-- --cl-rest--))
(while --cl-keys--
(cond
((memq
(car --cl-keys--)
'(:frame :allow-other-keys))
(unless
(cdr --cl-keys--)
(error "Missing argument for %s"
(car --cl-keys--)))
(setq --cl-keys--
(cdr
(cdr --cl-keys--))))
((car
(cdr
(memq ':allow-other-keys --cl-rest--)))
(setq --cl-keys-- nil))
(t
(error "Keyword argument %s not one of (:frame)"
(car --cl-keys--))))))
(cl-block make-comp-ssa--cmacro
(cl--defsubst-expand
'(frame)
'(cl-block make-comp-ssa
(record 'comp-ssa frame))
nil cl-whole nil frame)))))