Formatting improvements.
authorGordon Henriksen <gordonhenriksen@mac.com>
Mon, 10 Mar 2008 15:47:03 +0000 (15:47 +0000)
committerGordon Henriksen <gordonhenriksen@mac.com>
Mon, 10 Mar 2008 15:47:03 +0000 (15:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48146 91177308-0d34-0410-b5e6-96231b3b80d8

bindings/ocaml/llvm/llvm.mli

index 477a0c6cb8e33b8f0da6af930d8ef1fcfdd3a561..23c565b60c0c455f2e50314185a933ac203a4218 100644 (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"