21 lines
949 B
OCaml
21 lines
949 B
OCaml
(***********************************************************************)
|
|
(* *)
|
|
(* Objective Caml *)
|
|
(* *)
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
(* *)
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
|
(* Automatique. Distributed only by permission. *)
|
|
(* *)
|
|
(***********************************************************************)
|
|
|
|
(* $Id$ *)
|
|
|
|
(* Generation of bytecode from lambda terms *)
|
|
|
|
open Lambda
|
|
open Instruct
|
|
|
|
val compile_implementation: lambda -> instruction list
|
|
val compile_phrase: lambda -> instruction list * instruction list
|