[llvm-commits] [llvm] r97611 - /llvm/trunk/bindings/ocaml/llvm/llvm.mli

Erick Tryzelaar idadesub at users.sourceforge.net
Tue Mar 2 15:59:05 PST 2010


Author: erickt
Date: Tue Mar  2 17:59:05 2010
New Revision: 97611

URL: http://llvm.org/viewvc/llvm-project?rev=97611&view=rev
Log:
Don't use an ocaml keyword in an ocamldoc comment.

Modified:
    llvm/trunk/bindings/ocaml/llvm/llvm.mli

Modified: llvm/trunk/bindings/ocaml/llvm/llvm.mli
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/ocaml/llvm/llvm.mli?rev=97611&r1=97610&r2=97611&view=diff
==============================================================================
--- llvm/trunk/bindings/ocaml/llvm/llvm.mli (original)
+++ llvm/trunk/bindings/ocaml/llvm/llvm.mli Tue Mar  2 17:59:05 2010
@@ -1067,10 +1067,11 @@
 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 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





More information about the llvm-commits mailing list