From: Gordon Henriksen Date: Mon, 10 Mar 2008 15:47:03 +0000 (+0000) Subject: Formatting improvements. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a523380c6b5ad1d53dc7b38e9aee6bc9868d18c5;p=oota-llvm.git Formatting improvements. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48146 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/bindings/ocaml/llvm/llvm.mli b/bindings/ocaml/llvm/llvm.mli index 477a0c6cb8e..23c565b60c0 100644 --- a/bindings/ocaml/llvm/llvm.mli +++ b/bindings/ocaml/llvm/llvm.mli @@ -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"