[PATCH] D47467: [IR] Begin removal of TerminatorInst by removing successor manipulation.

Reid Kleckner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue May 29 14:16:13 PDT 2018


rnk added inline comments.


================
Comment at: llvm/include/llvm/IR/Instructions.h:3263
 
+  iterator_range<succ_op_iterator> successors() {
+    return make_range(
----------------
What are these used for? It doesn't seem like they are called in any way in this code. Do these keep existing calls to `Br->successors()` compiling?


Repository:
  rL LLVM

https://reviews.llvm.org/D47467





More information about the llvm-commits mailing list