Module of module types for OrderedType,ComparableType,Printable,Serializable,Discrete...
[ocaml.git] / asmcomp / asmgen.mli
blob0f6b831cebb18c5461b508f954f0c7406e4defad
1 (***********************************************************************)
2 (* *)
3 (* Objective Caml *)
4 (* *)
5 (* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
6 (* *)
7 (* Copyright 1996 Institut National de Recherche en Informatique et *)
8 (* en Automatique. All rights reserved. This file is distributed *)
9 (* under the terms of the Q Public License version 1.0. *)
10 (* *)
11 (***********************************************************************)
13 (* $Id$ *)
15 (* From lambda to assembly code *)
17 val compile_implementation :
18 string -> Format.formatter -> int * Lambda.lambda -> unit
19 val compile_phrase :
20 Format.formatter -> Cmm.phrase -> unit
22 type error = Assembler_error of string
23 exception Error of error
24 val report_error: Format.formatter -> error -> unit