Formatting improvements.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48146 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Gordon Henriksen 2008-03-10 15:47:03 +00:00
parent 5b8f82e35b
commit a523380c6b

View File

@ -342,7 +342,7 @@ external vector_size : lltype -> int = "llvm_vector_size"
(** [opaque_type ()] creates a new opaque type distinct from any other.
Opaque types are useful for building recursive types in combination with
{!refine_type} [opaque_ty ty].
{!refine_type}.
See [llvm::OpaqueType::get]. *)
external opaque_type : unit -> lltype = "llvm_opaque_type"
@ -1275,7 +1275,7 @@ external build_fcmp : Fcmp.t -> llvalue -> llvalue -> string ->
(** [build_phi incoming name b] creates a
[%name = phi %incoming]
instruction at the position specified by the instruction builder [b].
[incoming] is a list of [({!llvalue}, {!llbasicblock})] tuples.
[incoming] is a list of [(llvalue, llbasicblock)] tuples.
See the method [llvm::LLVMBuilder::CreatePHI]. *)
external build_phi : (llvalue * llbasicblock) list -> string -> llbuilder ->
llvalue = "llvm_build_phi"