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 | c475d136cba9a8ed86fed3b591bc41a233438b62 (patch) | |
tree | dfed231e9fae285c958abd52c7bd9313395e1340 | |
parent | 26454f794cdaa7583af0d1f840b5a815365ac67b (diff) | |
download | bcm5719-llvm-c475d136cba9a8ed86fed3b591bc41a233438b62.tar.gz bcm5719-llvm-c475d136cba9a8ed86fed3b591bc41a233438b62.zip |
Fix docstring for ocaml binding's const_float.
llvm-svn: 78589
-rw-r--r-- | llvm/bindings/ocaml/llvm/llvm.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/bindings/ocaml/llvm/llvm.mli b/llvm/bindings/ocaml/llvm/llvm.mli index c7c4d3a9abe..8b8cb7f41f4 100644 --- a/llvm/bindings/ocaml/llvm/llvm.mli +++ b/llvm/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" |