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 make-comp--ssa.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
;; Could not find source code, showing raw function object.
#[(cl-whole &rest --cl-rest--)
  ((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)))))
  (cl-struct-comp--ssa-tags) nil
  "compiler-macro for `make-comp--ssa'.\n\n(fn CL-WHOLE &cl-quote &key FRAME)"]