[llvm-commits] [llvm] r166309 - /llvm/trunk/bindings/ocaml/executionengine/llvm_executionengine.ml
Micah Villmow
villmow at gmail.com
Fri Oct 19 13:36:22 PDT 2012
Author: mvillmow
Date: Fri Oct 19 15:36:22 2012
New Revision: 166309
URL: http://llvm.org/viewvc/llvm-project?rev=166309&view=rev
Log:
Fix a build error for ocaml bindings that was introduced with the TargetData --> DataLayout changes.
Modified:
llvm/trunk/bindings/ocaml/executionengine/llvm_executionengine.ml
Modified: llvm/trunk/bindings/ocaml/executionengine/llvm_executionengine.ml
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/ocaml/executionengine/llvm_executionengine.ml?rev=166309&r1=166308&r2=166309&view=diff
==============================================================================
--- llvm/trunk/bindings/ocaml/executionengine/llvm_executionengine.ml (original)
+++ llvm/trunk/bindings/ocaml/executionengine/llvm_executionengine.ml Fri Oct 19 15:36:22 2012
@@ -84,7 +84,7 @@
= "llvm_ee_free_machine_code"
external target_data: t -> Llvm_target.DataLayout.t
- = "LLVMGetExecutionEngineDataLayout"
+ = "LLVMGetExecutionEngineTargetData"
(* The following are not bound. Patches are welcome.
More information about the llvm-commits
mailing list