mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
[OCaml] Documentation improvements.
llvm-svn: 212048
This commit is contained in:
parent
e739f85e32
commit
f99a42bc31
@ -151,4 +151,6 @@ module ExecutionEngine: sig
|
||||
val data_layout : t -> Llvm_target.DataLayout.t
|
||||
end
|
||||
|
||||
(** [initialize_native_target ()] initializes the native target corresponding
|
||||
to the host. Returns [true] if initialization is {b not} done. *)
|
||||
val initialize_native_target : unit -> bool
|
||||
|
@ -1051,12 +1051,12 @@ val const_lshr : llvalue -> llvalue -> llvalue
|
||||
See the method [llvm::ConstantExpr::getAShr]. *)
|
||||
val const_ashr : llvalue -> llvalue -> llvalue
|
||||
|
||||
(** [const_gep pc indices] returns the constant [getElementPtr] of [p1] with the
|
||||
(** [const_gep pc indices] returns the constant [getElementPtr] of [pc] with the
|
||||
constant integers indices from the array [indices].
|
||||
See the method [llvm::ConstantExpr::getGetElementPtr]. *)
|
||||
val const_gep : llvalue -> llvalue array -> llvalue
|
||||
|
||||
(** [const_in_bounds_gep pc indices] returns the constant [getElementPtr] of [p1]
|
||||
(** [const_in_bounds_gep pc indices] returns the constant [getElementPtr] of [pc]
|
||||
with the constant integers indices from the array [indices].
|
||||
See the method [llvm::ConstantExpr::getInBoundsGetElementPtr]. *)
|
||||
val const_in_bounds_gep : llvalue -> llvalue array -> llvalue
|
||||
@ -2360,7 +2360,7 @@ val build_insertelement : llvalue -> llvalue -> llvalue -> string ->
|
||||
val build_shufflevector : llvalue -> llvalue -> llvalue -> string ->
|
||||
llbuilder -> llvalue
|
||||
|
||||
(** [build_insertvalue agg idx name b] creates a
|
||||
(** [build_extractvalue agg idx name b] creates a
|
||||
[%name = extractvalue %agg, %idx]
|
||||
instruction at the position specified by the instruction builder [b].
|
||||
See the method [llvm::LLVMBuilder::CreateExtractValue]. *)
|
||||
|
Loading…
Reference in New Issue
Block a user