diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-12-01 21:01:15 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-12-01 21:01:15 +0000 |
commit | 332854232c33fff1bccd61ff0f9f8fda157fe710 (patch) | |
tree | 8c5ee030ccde52bb6c400cf54f6e28ff352a7621 /bindings/ocaml/llvm/llvm_ocaml.c | |
parent | 63a180bab88d10a5577e8427d77a2b2e65e9446e (diff) | |
download | external_llvm-332854232c33fff1bccd61ff0f9f8fda157fe710.zip external_llvm-332854232c33fff1bccd61ff0f9f8fda157fe710.tar.gz external_llvm-332854232c33fff1bccd61ff0f9f8fda157fe710.tar.bz2 |
Adding ocamldoc-style comments for the Ocaml bindings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44494 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/ocaml/llvm/llvm_ocaml.c')
-rw-r--r-- | bindings/ocaml/llvm/llvm_ocaml.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/bindings/ocaml/llvm/llvm_ocaml.c b/bindings/ocaml/llvm/llvm_ocaml.c index ddf577a..a0b39c6 100644 --- a/bindings/ocaml/llvm/llvm_ocaml.c +++ b/bindings/ocaml/llvm/llvm_ocaml.c @@ -57,13 +57,6 @@ CAMLprim value llvm_classify_type(LLVMTypeRef Ty) { return Val_int(LLVMGetTypeKind(Ty)); } -/* lltype -> lltype -> unit */ -CAMLprim value llvm_refine_abstract_type(LLVMTypeRef ConcreteTy, - LLVMTypeRef AbstractTy) { - LLVMRefineAbstractType(AbstractTy, ConcreteTy); - return Val_unit; -} - /*--... Operations on integer types ........................................--*/ /* unit -> lltype */ |