summaryrefslogtreecommitdiff
path: root/bindings/ocaml/llvm/llvm.mli
diff options
context:
space:
mode:
authorErick Tryzelaar <idadesub@users.sourceforge.net>2010-02-28 20:45:03 +0000
committerErick Tryzelaar <idadesub@users.sourceforge.net>2010-02-28 20:45:03 +0000
commitb65c5f2ec347db8342cb7e42d072b0088b74fa73 (patch)
tree8729f5e146e008e8344c3286ef8d3b21a14e1194 /bindings/ocaml/llvm/llvm.mli
parent6ba5c56cf5b1609ec4af45f4901118865a8ed9b6 (diff)
downloadllvm-b65c5f2ec347db8342cb7e42d072b0088b74fa73.tar.gz
llvm-b65c5f2ec347db8342cb7e42d072b0088b74fa73.tar.bz2
llvm-b65c5f2ec347db8342cb7e42d072b0088b74fa73.tar.xz
Add support getting the operands of a User to ocaml.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97414 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/ocaml/llvm/llvm.mli')
-rw-r--r--bindings/ocaml/llvm/llvm.mli7
1 files changed, 7 insertions, 0 deletions
diff --git a/bindings/ocaml/llvm/llvm.mli b/bindings/ocaml/llvm/llvm.mli
index 3413a64660..674ec9e9c0 100644
--- a/bindings/ocaml/llvm/llvm.mli
+++ b/bindings/ocaml/llvm/llvm.mli
@@ -513,6 +513,13 @@ external replace_all_uses_with : llvalue -> llvalue -> unit
= "LLVMReplaceAllUsesWith"
+(* {6 Users} *)
+
+(** [operand v i] returns the operand at index [i] for the value [v]. See the
+ method [llvm::User::getOperand]. *)
+external operand : llvalue -> int -> llvalue = "llvm_operand"
+
+
(** {7 Operations on constants of (mostly) any type} *)
(** [is_constant v] returns [true] if the value [v] is a constant, [false]