diff options
| author | Peter Zotov <whitequark@whitequark.org> | 2013-11-05 09:13:39 +0000 |
|---|---|---|
| committer | Peter Zotov <whitequark@whitequark.org> | 2013-11-05 09:13:39 +0000 |
| commit | a4c2a3e6b63356cc9d21edbb5b09b4d291b20819 (patch) | |
| tree | 62fc2ed4e15abfa3c61156cdf19b2b4fc03008ed | |
| parent | 96c07b165ec36a10be57bc352c185b48d03c6d8a (diff) | |
| download | bcm5719-llvm-a4c2a3e6b63356cc9d21edbb5b09b4d291b20819.tar.gz bcm5719-llvm-a4c2a3e6b63356cc9d21edbb5b09b4d291b20819.zip | |
[OCaml] Llvm_linker: do not use external in module interface
Workaround for an OCaml bug:
http://caml.inria.fr/mantis/view.php?id=4166
llvm-svn: 194057
| -rw-r--r-- | llvm/bindings/ocaml/linker/llvm_linker.mli | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/bindings/ocaml/linker/llvm_linker.mli b/llvm/bindings/ocaml/linker/llvm_linker.mli index 9752b65e4b2..4def7a8cc98 100644 --- a/llvm/bindings/ocaml/linker/llvm_linker.mli +++ b/llvm/bindings/ocaml/linker/llvm_linker.mli @@ -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 |

