Module Linear_format

type linear_item_info =
| Func of Linear.fundecl
| Data of Cmm.data_item list
type linear_unit_info = {
mutable unit_name : string;
mutable items : linear_item_info list;
mutable for_pack : string option;
}
val save : string -> linear_unit_info -> unit
val restore : string -> linear_unit_info * Digest.t