[llvm] r194057 - [OCaml] Llvm_linker: do not use external in module interface
Peter Zotov
whitequark at whitequark.org
Tue Nov 5 01:13:40 PST 2013
Author: whitequark
Date: Tue Nov 5 03:13:39 2013
New Revision: 194057
URL: http://llvm.org/viewvc/llvm-project?rev=194057&view=rev
Log:
[OCaml] Llvm_linker: do not use external in module interface
Workaround for an OCaml bug:
http://caml.inria.fr/mantis/view.php?id=4166
Modified:
llvm/trunk/bindings/ocaml/linker/llvm_linker.mli
Modified: llvm/trunk/bindings/ocaml/linker/llvm_linker.mli
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/ocaml/linker/llvm_linker.mli?rev=194057&r1=194056&r2=194057&view=diff
==============================================================================
--- llvm/trunk/bindings/ocaml/linker/llvm_linker.mli (original)
+++ llvm/trunk/bindings/ocaml/linker/llvm_linker.mli Tue Nov 5 03:13:39 2013
@@ -23,5 +23,4 @@ end
(** [link_modules dst src mode] links [src] into [dst], raising [Error]
if the linking fails. *)
-external link_modules : Llvm.llmodule -> Llvm.llmodule -> Mode.t -> unit
- = "llvm_link_modules"
\ No newline at end of file
+val link_modules : Llvm.llmodule -> Llvm.llmodule -> Mode.t -> unit
\ No newline at end of file
More information about the llvm-commits
mailing list