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;
}
val pp : Ppx_show_runtime.Format.formatter -> t -> unit
val show : t -> string
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t Base__Ppx_compare_lib.compare