Function: profiler-calltree-parent--cmacro

profiler-calltree-parent--cmacro is a function defined in profiler.el.gz.

Signature

(profiler-calltree-parent--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining profiler-calltree-parent.

Source Code

;; Defined in /usr/src/emacs/lisp/profiler.el.gz
;; Closure converted to defun by helpful.
(defun profiler-calltree-parent--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `profiler-calltree-parent'."
  (cl-block profiler-calltree-parent--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block profiler-calltree-parent
	(progn
	  (or
	   (profiler-calltree-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'profiler-calltree cl-x)))
	  (aref cl-x 4)))
     nil nil nil cl-x)))