Module FFI.Instruction

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