Module FFI.Instruction

type t = private {
  1. opname : string;
  2. opcode : int;
  3. arg : int;
  4. argval : Constant.t;
  5. offset : int;
  6. starts_line : int option;
  7. is_jump_target : bool;
}
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t Base__Ppx_compare_lib.compare
val pp : ?code:Code.t -> Stdlib.Format.formatter -> t -> unit