[llvm] r344726 - [TI removal] Remove TerminatorInst references from bindings.
Chandler Carruth via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 18 00:40:04 PDT 2018
Author: chandlerc
Date: Thu Oct 18 00:40:03 2018
New Revision: 344726
URL: http://llvm.org/viewvc/llvm-project?rev=344726&view=rev
Log:
[TI removal] Remove TerminatorInst references from bindings.
For the Go bindings, this just removes the no longer useful "isa"-style
wrapper. If there is a user that is interested, they can add a wrapper
for `Instruction::isTerminator`.
For the OCaml bindings, this is just a documentation update.
Modified:
llvm/trunk/bindings/go/llvm/ir.go
llvm/trunk/bindings/ocaml/llvm/llvm.mli
Modified: llvm/trunk/bindings/go/llvm/ir.go
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/go/llvm/ir.go?rev=344726&r1=344725&r2=344726&view=diff
==============================================================================
--- llvm/trunk/bindings/go/llvm/ir.go (original)
+++ llvm/trunk/bindings/go/llvm/ir.go Thu Oct 18 00:40:03 2018
@@ -739,7 +739,6 @@ func (v Value) IsAPHINode() (rv Value)
func (v Value) IsASelectInst() (rv Value) { rv.C = C.LLVMIsASelectInst(v.C); return }
func (v Value) IsAShuffleVectorInst() (rv Value) { rv.C = C.LLVMIsAShuffleVectorInst(v.C); return }
func (v Value) IsAStoreInst() (rv Value) { rv.C = C.LLVMIsAStoreInst(v.C); return }
-func (v Value) IsATerminatorInst() (rv Value) { rv.C = C.LLVMIsATerminatorInst(v.C); return }
func (v Value) IsABranchInst() (rv Value) { rv.C = C.LLVMIsABranchInst(v.C); return }
func (v Value) IsAInvokeInst() (rv Value) { rv.C = C.LLVMIsAInvokeInst(v.C); return }
func (v Value) IsAReturnInst() (rv Value) { rv.C = C.LLVMIsAReturnInst(v.C); return }
Modified: llvm/trunk/bindings/ocaml/llvm/llvm.mli
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/ocaml/llvm/llvm.mli?rev=344726&r1=344725&r2=344726&view=diff
==============================================================================
--- llvm/trunk/bindings/ocaml/llvm/llvm.mli (original)
+++ llvm/trunk/bindings/ocaml/llvm/llvm.mli Thu Oct 18 00:40:03 2018
@@ -1887,16 +1887,16 @@ val set_volatile : bool -> llvalue -> un
val is_terminator : llvalue -> bool
(** [successor v i] returns the successor at index [i] for the value [v].
- See the method [llvm::TerminatorInst::getSuccessor]. *)
+ See the method [llvm::Instruction::getSuccessor]. *)
val successor : llvalue -> int -> llbasicblock
(** [set_successor v i o] sets the successor of the value [v] at the index [i] to
the value [o].
- See the method [llvm::TerminatorInst::setSuccessor]. *)
+ See the method [llvm::Instruction::setSuccessor]. *)
val set_successor : llvalue -> int -> llbasicblock -> unit
(** [num_successors v] returns the number of successors for the value [v].
- See the method [llvm::TerminatorInst::getNumSuccessors]. *)
+ See the method [llvm::Instruction::getNumSuccessors]. *)
val num_successors : llvalue -> int
(** [successors v] returns the successors of [v]. *)
More information about the llvm-commits
mailing list