diff options
Diffstat (limited to 'compiler/dex/mir_graph.h')
-rw-r--r-- | compiler/dex/mir_graph.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/dex/mir_graph.h b/compiler/dex/mir_graph.h index 63b1f2d95f..c8ea972d9d 100644 --- a/compiler/dex/mir_graph.h +++ b/compiler/dex/mir_graph.h @@ -444,6 +444,11 @@ class BasicBlock : public DeletableArenaObject<kArenaAllocBB> { void UpdatePredecessor(BasicBlockId old_pred, BasicBlockId new_pred); /** + * @brief Return first non-Phi insn. + */ + MIR* GetFirstNonPhiInsn(); + + /** * @brief Used to obtain the next MIR that follows unconditionally. * @details The implementation does not guarantee that a MIR does not * follow even if this method returns nullptr. |