Function: make--comp-mvar0

make--comp-mvar0 is a byte-compiled function defined in comp.el.gz.

Signature

(make--comp-mvar0 &key TYPESET VALSET RANGE NEG ID SLOT)

Documentation

Constructor for objects of type comp-mvar.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(cl-defstruct (comp-mvar (:constructor make--comp-mvar0)
                         (:include comp-cstr))
  "A meta-variable being a slot in the meta-stack."
  (id nil :type (or null number)
      :documentation "Unique id when in SSA form.")
  (slot nil :type (or fixnum symbol)
        :documentation "Slot number in the array if a number or
        `scratch' for scratch slot."))