diff options
author | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2010-03-02 23:59:05 +0000 |
---|---|---|
committer | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2010-03-02 23:59:05 +0000 |
commit | df75eb64a7e34083051315cfed02d1559084d4cf (patch) | |
tree | 1d7e342671cd3c1025a7817f2bdad639bcded96a /bindings | |
parent | 0dd27da1841ca50d00aad3465f4f9b6a646fd64e (diff) | |
download | external_llvm-df75eb64a7e34083051315cfed02d1559084d4cf.zip external_llvm-df75eb64a7e34083051315cfed02d1559084d4cf.tar.gz external_llvm-df75eb64a7e34083051315cfed02d1559084d4cf.tar.bz2 |
Don't use an ocaml keyword in an ocamldoc comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97611 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/ocaml/llvm/llvm.mli | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/bindings/ocaml/llvm/llvm.mli b/bindings/ocaml/llvm/llvm.mli index 3ea7ad4..aa5ea76 100644 --- a/bindings/ocaml/llvm/llvm.mli +++ b/bindings/ocaml/llvm/llvm.mli @@ -1067,10 +1067,11 @@ external set_alignment : int -> llvalue -> unit = "llvm_set_alignment" external declare_global : lltype -> string -> llmodule -> llvalue = "llvm_declare_global" -(** [declare_qualified_global ty name as m] returns a new global variable of - type [ty] and with name [name] in module [m] in the address space [as]. If - such a global variable already exists, it is returned. If the type of the - existing global differs, then a bitcast to [ty] is returned. *) +(** [declare_qualified_global ty name addrspace m] returns a new global variable + of type [ty] and with name [name] in module [m] in the address space + [addrspace]. If such a global variable already exists, it is returned. If + the type of the existing global differs, then a bitcast to [ty] is + returned. *) external declare_qualified_global : lltype -> string -> int -> llmodule -> llvalue = "llvm_declare_qualified_global" @@ -1082,9 +1083,9 @@ external declare_qualified_global : lltype -> string -> int -> llmodule -> external define_global : string -> llvalue -> llmodule -> llvalue = "llvm_define_global" -(** [define_qualified_global name init as m] returns a new global with name - [name] and initializer [init] in module [m] in the address space [as]. If - the named global already exists, it is renamed. +(** [define_qualified_global name init addrspace m] returns a new global with + name [name] and initializer [init] in module [m] in the address space + [addrspace]. If the named global already exists, it is renamed. See the constructor of [llvm::GlobalVariable]. *) external define_qualified_global : string -> llvalue -> int -> llmodule -> llvalue |