Function: comp--insert-insn

comp--insert-insn is a byte-compiled function defined in comp.el.gz.

Signature

(comp--insert-insn INSN INSN-CELL)

Documentation

Insert INSN as second insn of INSN-CELL.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defsubst comp--insert-insn (insn insn-cell)
  "Insert INSN as second insn of INSN-CELL."
  (let ((next-cell (cdr insn-cell))
        (new-cell `(,insn)))
    (setf (cdr insn-cell) new-cell
          (cdr new-cell) next-cell
          (comp-func-ssa-status comp-func) 'dirty)))