commit | e1be5cd69c00af76a9995e633108b70ee6e1e669 | [log] [tgz] |
---|---|---|
author | Erick Tryzelaar <idadesub@users.sourceforge.net> | Thu Mar 27 00:27:14 2008 +0000 |
committer | Erick Tryzelaar <idadesub@users.sourceforge.net> | Thu Mar 27 00:27:14 2008 +0000 |
tree | 8aa88262df0f503ca36854ba1150deb772dcf048 | |
parent | 14eb20bbe41fb33ca036511bad98645bede7ed5c [diff] [blame] |
Expose ExecutionEngine::getTargetData() to c and ocaml bindings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48851 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/bindings/ocaml/executionengine/llvm_executionengine.mli b/bindings/ocaml/executionengine/llvm_executionengine.mli index d3037fe..9794f35 100644 --- a/bindings/ocaml/executionengine/llvm_executionengine.mli +++ b/bindings/ocaml/executionengine/llvm_executionengine.mli
@@ -147,4 +147,8 @@ (** [free_machine_code f ee] releases the memory in the execution engine [ee] 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.TargetData.t end