forked from OSchip/llvm-project
Don't use an ocaml keyword in an ocamldoc comment.
llvm-svn: 97611
This commit is contained in:
parent
94feaafe1e
commit
e9096c8289
|
@ -1067,10 +1067,11 @@ external set_alignment : int -> llvalue -> unit = "llvm_set_alignment"
|
||||||
external declare_global : lltype -> string -> llmodule -> llvalue
|
external declare_global : lltype -> string -> llmodule -> llvalue
|
||||||
= "llvm_declare_global"
|
= "llvm_declare_global"
|
||||||
|
|
||||||
(** [declare_qualified_global ty name as m] returns a new global variable of
|
(** [declare_qualified_global ty name addrspace m] returns a new global variable
|
||||||
type [ty] and with name [name] in module [m] in the address space [as]. If
|
of type [ty] and with name [name] in module [m] in the address space
|
||||||
such a global variable already exists, it is returned. If the type of the
|
[addrspace]. If such a global variable already exists, it is returned. If
|
||||||
existing global differs, then a bitcast to [ty] is returned. *)
|
the type of the existing global differs, then a bitcast to [ty] is
|
||||||
|
returned. *)
|
||||||
external declare_qualified_global : lltype -> string -> int -> llmodule ->
|
external declare_qualified_global : lltype -> string -> int -> llmodule ->
|
||||||
llvalue
|
llvalue
|
||||||
= "llvm_declare_qualified_global"
|
= "llvm_declare_qualified_global"
|
||||||
|
@ -1082,9 +1083,9 @@ external declare_qualified_global : lltype -> string -> int -> llmodule ->
|
||||||
external define_global : string -> llvalue -> llmodule -> llvalue
|
external define_global : string -> llvalue -> llmodule -> llvalue
|
||||||
= "llvm_define_global"
|
= "llvm_define_global"
|
||||||
|
|
||||||
(** [define_qualified_global name init as m] returns a new global with name
|
(** [define_qualified_global name init addrspace m] returns a new global with
|
||||||
[name] and initializer [init] in module [m] in the address space [as]. If
|
name [name] and initializer [init] in module [m] in the address space
|
||||||
the named global already exists, it is renamed.
|
[addrspace]. If the named global already exists, it is renamed.
|
||||||
See the constructor of [llvm::GlobalVariable]. *)
|
See the constructor of [llvm::GlobalVariable]. *)
|
||||||
external define_qualified_global : string -> llvalue -> int -> llmodule ->
|
external define_qualified_global : string -> llvalue -> int -> llmodule ->
|
||||||
llvalue
|
llvalue
|
||||||
|
|
Loading…
Reference in New Issue