[OCaml] Documentation improvements.
[oota-llvm.git] / bindings / ocaml / executionengine / llvm_executionengine.mli
index 1aa250f3630ce952faf783cdd7f0cbbd389d4687..74a606287f427ea34946e93619aa2596751e7674 100644 (file)
@@ -147,9 +147,10 @@ module ExecutionEngine: sig
       used to store the machine code for the function [f]. *)
   val free_machine_code : Llvm.llvalue -> t -> unit
 
-  (** [target_data ee] is the target data owned by the execution engine
-      [ee]. *)
-  val target_data : t -> Llvm_target.DataLayout.t
+  (** [data_layout ee] is the data layout of the execution engine [ee]. *)
+  val data_layout : t -> Llvm_target.DataLayout.t
 end
 
+(** [initialize_native_target ()] initializes the native target corresponding
+    to the host. Returns [true] if initialization is {b not} done. *)
 val initialize_native_target : unit -> bool