diff options
author | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2009-08-10 19:44:45 +0000 |
---|---|---|
committer | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2009-08-10 19:44:45 +0000 |
commit | d134e39dbd4de94e8e1b4a771e19bc0b335f26e3 (patch) | |
tree | f90de11d101379ea151757d7edd3ad34486009ad /bindings | |
parent | be88edfd8399f10e152eef138abb6a080be772c4 (diff) | |
download | external_llvm-d134e39dbd4de94e8e1b4a771e19bc0b335f26e3.zip external_llvm-d134e39dbd4de94e8e1b4a771e19bc0b335f26e3.tar.gz external_llvm-d134e39dbd4de94e8e1b4a771e19bc0b335f26e3.tar.bz2 |
Fix docstring for ocaml binding's const_float.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78589 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/ocaml/llvm/llvm.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ocaml/llvm/llvm.mli b/bindings/ocaml/llvm/llvm.mli index c7c4d3a..8b8cb7f 100644 --- a/bindings/ocaml/llvm/llvm.mli +++ b/bindings/ocaml/llvm/llvm.mli @@ -470,7 +470,7 @@ external const_of_int64 : lltype -> Int64.t -> bool -> llvalue = "llvm_const_of_int64" (** [const_float ty n] returns the floating point constant of type [ty] and - value [n]. See the method [llvm::ConstantInt::get]. *) + value [n]. See the method [llvm::ConstantFP::get]. *) external const_float : lltype -> float -> llvalue = "llvm_const_float" |